Class ValidationError
- java.lang.Object
-
- deltix.qsrv.hf.pub.codec.validerrors.ValidationError
-
- Direct Known Subclasses:
DecodingError
,ExtraDataAtEnd
,FloatFieldOutOfRange
,IllegalNullValue
,IntegerFieldOutOfRange
public abstract class ValidationError extends java.lang.Object
-
-
Field Summary
Fields Modifier and Type Field Description int
atOffset
Actual offset into RawMessage.data (not corrected for start offset).NonStaticFieldInfo
fieldInfo
The field that failed validation, or null.
-
Constructor Summary
Constructors Modifier Constructor Description protected
ValidationError(int atOffset, NonStaticFieldInfo fieldInfo)
-
-
-
Field Detail
-
fieldInfo
public final NonStaticFieldInfo fieldInfo
The field that failed validation, or null.
-
atOffset
public final int atOffset
Actual offset into RawMessage.data (not corrected for start offset).
-
-
Constructor Detail
-
ValidationError
protected ValidationError(int atOffset, NonStaticFieldInfo fieldInfo)
-
-