Package com.nimbusds.oauth2.sdk
Class SerializeException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
com.nimbusds.oauth2.sdk.SerializeException
- All Implemented Interfaces:
Serializable
Serialization exception (unchecked).
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionSerializeException
(String message) Creates a new serialisation exception.SerializeException
(String message, Throwable cause) Creates a new serialisation exception. -
Method Summary
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Constructor Details
-
SerializeException
Creates a new serialisation exception.- Parameters:
message
- The exception message. May benull
.
-
SerializeException
Creates a new serialisation exception.- Parameters:
message
- The exception message. May benull
.cause
- The exception cause,null
if not specified.
-