Package org.apache.shiro.config.ogdl
Class UnresolveableReferenceException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
org.apache.shiro.lang.ShiroException
org.apache.shiro.config.ConfigurationException
org.apache.shiro.config.ogdl.UnresolveableReferenceException
- All Implemented Interfaces:
Serializable
public class UnresolveableReferenceException
extends org.apache.shiro.config.ConfigurationException
Exception thrown when a reference to an object is made, but that object cannot be found. This is most likely
thrown due to a configuration line that references an object that hasn't been defined yet.
- Since:
- 0.9 RC2
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionCreates a new UnresolveableReferenceException.UnresolveableReferenceException(String message) Constructs a new UnresolveableReferenceException.UnresolveableReferenceException(String message, Throwable cause) Constructs a new UnresolveableReferenceException.Constructs a new UnresolveableReferenceException. -
Method Summary
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Constructor Details
-
UnresolveableReferenceException
public UnresolveableReferenceException()Creates a new UnresolveableReferenceException. -
UnresolveableReferenceException
Constructs a new UnresolveableReferenceException.- Parameters:
message- the reason for the exception
-
UnresolveableReferenceException
Constructs a new UnresolveableReferenceException.- Parameters:
cause- the underlying Throwable that caused this exception to be thrown.
-
UnresolveableReferenceException
Constructs a new UnresolveableReferenceException.- Parameters:
message- the reason for the exceptioncause- the underlying Throwable that caused this exception to be thrown.
-