Class SerializationException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
dev.siroshun.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
ConstructorsConstructorDescriptionCreatesSerializationExceptionwith no message and no cause.SerializationException(String message) CreatesSerializationExceptionwith the message.SerializationException(String message, Throwable cause) CreatesSerializationExceptionwith the message and otherThrowable.SerializationException(Throwable cause) CreatesSerializationExceptionwith 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()CreatesSerializationExceptionwith no message and no cause. -
SerializationException
CreatesSerializationExceptionwith the message.- Parameters:
message- the detail message- See Also:
-
SerializationException
CreatesSerializationExceptionwith the message and otherThrowable.- Parameters:
message- the detail messagecause- the causedThrowable- See Also:
-
SerializationException
CreatesSerializationExceptionwith otherThrowable.- Parameters:
cause- the causedThrowable- See Also:
-