Class JsonDecodingException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
io.helidon.json.JsonException
io.helidon.json.JsonDecodingException
- All Implemented Interfaces:
Serializable
Exception caused by JSON input that cannot be decoded into the requested value.
This exception identifies parsing, structural, and input conversion failures. Other JSON processing failures,
such as binding configuration or provider failures, use JsonException directly or another subtype.
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionJsonDecodingException(String message) Construct a new exception with the specified detail message.JsonDecodingException(String message, Exception cause) Construct a new exception with the specified detail message and cause. -
Method Summary
Methods inherited from class Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Constructor Details
-
JsonDecodingException
Construct a new exception with the specified detail message.- Parameters:
message- the detail message
-
JsonDecodingException
-