int optionLenQuartet = next & 0x0F;
int optionLength = optionFromQuartet(optionLenQuartet, input);
// LOG.debug("optionLength : {}", optionLength);
// create the option DTO
CoapOptionType optType = CoapOptionType.fromCode(optionCode);
if (optType == null) {
throw new ProtocolDecoderException("unknown option code : " + optionCode);
}
// LOG.debug("option type : {}", optType);