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
public class SerializeException extends RuntimeException
Serialization exception (unchecked).- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description SerializeException(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 Detail
-
SerializeException
public SerializeException(String message)
Creates a new serialisation exception.- Parameters:
message
- The exception message. May benull
.
-
SerializeException
public SerializeException(String message, Throwable cause)
Creates a new serialisation exception.- Parameters:
message
- The exception message. May benull
.cause
- The exception cause,null
if not specified.
-
-