Class SerializationException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
com.github.siroshun09.configapi.core.serialization.SerializationException
- All Implemented Interfaces:
Serializable
A
RuntimeException
that will be thrown when errors occurred while serializing/deserializing objects.- See Also:
-
Constructor Summary
ConstructorDescriptionCreatesSerializationException
with no message and no cause.SerializationException
(String message) CreatesSerializationException
with the message.SerializationException
(String message, Throwable cause) CreatesSerializationException
with the message and otherThrowable
.SerializationException
(Throwable cause) CreatesSerializationException
with otherThrowable
. -
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
public SerializationException()CreatesSerializationException
with no message and no cause. -
SerializationException
CreatesSerializationException
with the message.- Parameters:
message
- the detail message- See Also:
-
SerializationException
CreatesSerializationException
with the message and otherThrowable
.- Parameters:
message
- the detail messagecause
- the causedThrowable
- See Also:
-
SerializationException
CreatesSerializationException
with otherThrowable
.- Parameters:
cause
- the causedThrowable
- See Also:
-