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 Details

    • UnresolveableReferenceException

      public UnresolveableReferenceException()
      Creates a new UnresolveableReferenceException.
    • UnresolveableReferenceException

      public UnresolveableReferenceException(String message)
      Constructs a new UnresolveableReferenceException.
      Parameters:
      message - the reason for the exception
    • UnresolveableReferenceException

      public UnresolveableReferenceException(Throwable cause)
      Constructs a new UnresolveableReferenceException.
      Parameters:
      cause - the underlying Throwable that caused this exception to be thrown.
    • UnresolveableReferenceException

      public UnresolveableReferenceException(String message, Throwable cause)
      Constructs a new UnresolveableReferenceException.
      Parameters:
      message - the reason for the exception
      cause - the underlying Throwable that caused this exception to be thrown.