Package com.launchdarkly.sdk.json
Class SerializationException
java.lang.Object
java.lang.Throwable
java.lang.Exception
com.launchdarkly.sdk.json.SerializationException
- All Implemented Interfaces:
Serializable
General exception class for all errors in serializing or deserializing JSON.
The SDK uses this class to avoid depending on exception types from the underlying JSON framework
that it uses. The underlying exception can be inspected with the Throwable.getCause()
method, but application code should not rely on those details since they are subject to change.
- See Also:
-
Constructor Summary
ConstructorDescriptionSerializationException
(String message) Creates an instance.SerializationException
(Throwable cause) Creates an instance. -
Method Summary
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Constructor Details
-
SerializationException
Creates an instance.- Parameters:
cause
- the underlying exception
-
SerializationException
Creates an instance.- Parameters:
message
- a description of the error
-