Package org.forgerock.json.ref
Class JsonReferenceException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
org.forgerock.json.JsonException
org.forgerock.json.ref.JsonReferenceException
- All Implemented Interfaces:
Serializable
An exception that is thrown during JSON cryptographic operations.
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionConstructs a new exception withnullas its detail message.JsonReferenceException(String message) Constructs a new exception with the specified detail message.JsonReferenceException(String message, Throwable cause) Constructs a new exception with the specified detail message and cause.JsonReferenceException(Throwable cause) Constructs a new exception with the specified 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
-
JsonReferenceException
public JsonReferenceException()Constructs a new exception withnullas its detail message. -
JsonReferenceException
Constructs a new exception with the specified detail message.- Parameters:
message- The message.
-
JsonReferenceException
Constructs a new exception with the specified cause.- Parameters:
cause- The cause.
-
JsonReferenceException
Constructs a new exception with the specified detail message and cause.- Parameters:
cause- The cause.message- The message.
-