break;
case DECODE_RULE_NULLS:
// make sure next 'delta' bytes are null:
while(delta-- > 0) {
if(coder.readByte() != 0) {
throw new CoderException(coder.getLocation(),
coder.getExpected(), coder.getDelta());
}
}
break;
case DECODE_RULE_STRICT:
default:
throw new CoderException(coder.getLocation(),
coder.getExpected(), coder.getDelta());
}
}