Class SerializerException

java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
org.ehcache.spi.serialization.SerializerException
All Implemented Interfaces:
Serializable

public class SerializerException extends RuntimeException
Thrown by a Serializer when it cannot serialize or deserialize an instance.
See Also:
  • Constructor Details

    • SerializerException

      public SerializerException()
      Creates a SerializerException.
    • SerializerException

      public SerializerException(String message)
      Creates a SerializerException with the provided message.
      Parameters:
      message - information about the exception
    • SerializerException

      public SerializerException(String message, Throwable cause)
      Creates a SerializerException with the provided message and cause.
      Parameters:
      message - information about the exception
      cause - the cause of this exception
    • SerializerException

      public SerializerException(Throwable cause)
      Creates a SerializerException with the provided cause.
      Parameters:
      cause - the cause of this exception