java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
io.helidon.json.JsonException
io.helidon.json.binding.JsonBindingException
- All Implemented Interfaces:
Serializable
Exception thrown during JSON binding operations.
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionJsonBindingException(String message) Construct a new exception with the specified detail message.JsonBindingException(String message, Exception cause) Construct a new exception with the specified detail message and 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
-
JsonBindingException
Construct a new exception with the specified detail message.- Parameters:
message- the detail message
-
JsonBindingException
Construct a new exception with the specified detail message and cause.- Parameters:
message- the detail messagecause- the cause
-