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