Package org.ehcache.spi.serialization
Class SerializerException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- java.lang.RuntimeException
-
- org.ehcache.spi.serialization.SerializerException
-
- All Implemented Interfaces:
java.io.Serializable
public class SerializerException extends java.lang.RuntimeExceptionThrown by aSerializerwhen it cannot serialize or deserialize an instance.- See Also:
- Serialized Form
-
-
Field Summary
Fields Modifier and Type Field Description private static longserialVersionUID
-
Constructor Summary
Constructors Constructor Description SerializerException()Creates aSerializerException.SerializerException(java.lang.String message)Creates aSerializerExceptionwith the provided message.SerializerException(java.lang.String message, java.lang.Throwable cause)Creates aSerializerExceptionwith the provided message and cause.SerializerException(java.lang.Throwable cause)Creates aSerializerExceptionwith the provided cause.
-
-
-
Field Detail
-
serialVersionUID
private static final long serialVersionUID
- See Also:
- Constant Field Values
-
-
Constructor Detail
-
SerializerException
public SerializerException()
Creates aSerializerException.
-
SerializerException
public SerializerException(java.lang.String message)
Creates aSerializerExceptionwith the provided message.- Parameters:
message- information about the exception
-
SerializerException
public SerializerException(java.lang.String message, java.lang.Throwable cause)Creates aSerializerExceptionwith the provided message and cause.- Parameters:
message- information about the exceptioncause- the cause of this exception
-
SerializerException
public SerializerException(java.lang.Throwable cause)
Creates aSerializerExceptionwith the provided cause.- Parameters:
cause- the cause of this exception
-
-