handler.handleCompletionRecord();
_otherRecordCount++;
break;
}
default: {
throw new CorruptImportStreamException("Invalid record type " + recordType + " ("
+ Util.bytesToHex(new byte[] { (byte) (recordType >>> 8), (byte) recordType }) + " after reading "
+ _dataRecordCount + " data records" + " and " + _otherRecordCount + " other records");
}
}
return true;