Package org.apache.shiro.io
Class SerializationException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- java.lang.RuntimeException
-
- org.apache.shiro.ShiroException
-
- org.apache.shiro.io.SerializationException
-
- All Implemented Interfaces:
Serializable
public class SerializationException extends ShiroException
Root exception for problems either serializing or de-serializing data.- Since:
- Apr 23, 2008 8:58:22 AM
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description SerializationException()
Creates a new SerializationException.SerializationException(String message)
Constructs a new SerializationException.SerializationException(String message, Throwable cause)
Constructs a new SerializationException.SerializationException(Throwable cause)
Constructs a new SerializationException.
-
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()
Creates a new SerializationException.
-
SerializationException
public SerializationException(String message)
Constructs a new SerializationException.- Parameters:
message
- the reason for the exception
-
SerializationException
public SerializationException(Throwable cause)
Constructs a new SerializationException.- Parameters:
cause
- the underlying Throwable that caused this exception to be thrown.
-
SerializationException
public SerializationException(String message, Throwable cause)
Constructs a new SerializationException.- Parameters:
message
- the reason for the exceptioncause
- the underlying Throwable that caused this exception to be thrown.
-
-