java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
io.helidon.json.JsonException
- All Implemented Interfaces:
Serializable
- Direct Known Subclasses:
JsonBindingException
Exception thrown during JSON processing operations.
This exception is used to signal errors that occur during JSON parsing, serialization, or other JSON-related operations.
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionJsonException(String message) Construct a new JsonException with the specified detail message.JsonException(String message, Exception cause) Construct a new JsonException 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
-
JsonException
Construct a new JsonException with the specified detail message.- Parameters:
message- the detail message
-
JsonException
Construct a new JsonException with the specified detail message and cause.- Parameters:
message- the detail messagecause- the cause
-