java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
io.helidon.json.schema.JsonSchemaException
- All Implemented Interfaces:
Serializable
Json schema related exception.
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionJsonSchemaException
(String message) Create a new schema exception with the provided message.JsonSchemaException
(String message, Throwable cause) Create a new schema exception with the provided message and a 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
-
JsonSchemaException
Create a new schema exception with the provided message.- Parameters:
message
- descriptive error message- Throws:
NullPointerException
- if the message is null
-
JsonSchemaException
Create a new schema exception with the provided message and a cause.- Parameters:
message
- descriptive error messagecause
- the cause of this exception- Throws:
NullPointerException
- if either message or cause is null
-