Class MxPackException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
org.odenix.mxpack.core.MxPackException
- All Implemented Interfaces:
Serializable
- Direct Known Subclasses:
MxPackException.InvalidMessageHeader,MxPackException.SizeLimitExceeded,MxPackException.TypeMismatch
The root of MxPack's exception hierarchy.
MxPack throws the following exception types:
MxPackExceptionIOExceptionIllegalArgumentExceptionIllegalStateException
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeClassDescriptionstatic final classIndicates that a MessagePack value has an invalid header.static final classIndicates that the size limit of a buffer or other resource has been exceeded.static final classIndicates that a MessagePack value is incompatible with the requested type. -
Constructor Summary
ConstructorsModifierConstructorDescriptionprotectedMxPackException(String message) Constructs aMxPackExceptionexception with the given message. -
Method Summary
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Constructor Details
-
MxPackException
Constructs aMxPackExceptionexception with the given message.- Parameters:
message- the exception message
-