Class SerializationException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- java.lang.RuntimeException
-
- io.axoniq.dataprotection.serialization.SerializationException
-
- All Implemented Interfaces:
Serializable
public class SerializationException extends RuntimeException
Indicates that an exception occurred while serializing or deserializing an object.- Since:
- 0.6
- Author:
- Allard Buijze
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description SerializationException(String message)Initializes the exception using the givenmessage.SerializationException(String message, Throwable cause)Initializes the exception using the givenmessageandcause.
-
Method Summary
-
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
-
-
-
Constructor Detail
-
SerializationException
public SerializationException(String message)
Initializes the exception using the givenmessage.- Parameters:
message- The message describing the exception
-
-