//add by hxzon
protected void readValue(BerInputStream stream) {
try {
int len = stream.readBerLength();
if (len != 0) {
throw new AsnEncodingException("Illegal null object");
}
super.setOffsetAndLen(stream);
} catch (IOException e) {
logger.error("BerNull read value error", e);
}