Package org.apache.shiro.lang.util
Class UnknownClassException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
org.apache.shiro.lang.ShiroException
org.apache.shiro.lang.util.UnknownClassException
- All Implemented Interfaces:
Serializable
The Shiro framework's
RuntimeException equivalent of the JDK's
ClassNotFoundException, to maintain a RuntimeException paradigm.- Since:
- 0.1
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionCreates a new UnknownClassException.UnknownClassException(String message) Constructs a new UnknownClassException.UnknownClassException(String message, Throwable cause) Constructs a new UnknownClassException.UnknownClassException(Throwable cause) Constructs a new UnknownClassException. -
Method Summary
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Constructor Details
-
UnknownClassException
public UnknownClassException()Creates a new UnknownClassException. -
UnknownClassException
Constructs a new UnknownClassException.- Parameters:
message- the reason for the exception
-
UnknownClassException
Constructs a new UnknownClassException.- Parameters:
cause- the underlying Throwable that caused this exception to be thrown.
-
UnknownClassException
Constructs a new UnknownClassException.- Parameters:
message- the reason for the exceptioncause- the underlying Throwable that caused this exception to be thrown.
-