Class BindingException
java.lang.Object
java.lang.Throwable
java.lang.Exception
gov.nist.secauto.metaschema.databind.io.BindingException
- All Implemented Interfaces:
Serializable
Used to report exceptional conditions related to processing bound objects.
- See Also:
-
Constructor Summary
ConstructorDescriptionBindingException
(String message) Construct a new binding exception with the provided detail message.BindingException
(String message, Throwable cause) Construct a new binding exception with the provided detail message and cause.BindingException
(Throwable cause) Construct a new binding exception with the provided cause. -
Method Summary
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Constructor Details
-
BindingException
Construct a new binding exception with the provided detail message and cause.- Parameters:
message
- the detail messagecause
- the cause of the exception
-
BindingException
Construct a new binding exception with the provided detail message.- Parameters:
message
- the detail message
-
BindingException
Construct a new binding exception with the provided cause.- Parameters:
cause
- the cause of the exception
-