Class NotAuthorizedException

  • All Implemented Interfaces:
    java.io.Serializable

    public class NotAuthorizedException
    extends java.lang.RuntimeException
    Raised whenever a resource is accessed that the current user does not have permission to access.
    Author:
    cdivilly
    See Also:
    Serialized Form
    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      AuthorizationError error()
      java.lang.String toString()  
      • Methods inherited from class java.lang.Throwable

        addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
    • Constructor Detail

      • NotAuthorizedException

        public NotAuthorizedException​(java.lang.String authorizationConstraintName,
                                      AuthorizationError error,
                                      java.lang.Throwable cause)
        Raises a NotAuthorizedException condition requiring the user to have authenticated against the specified Privilege.
        Parameters:
        authorizationConstraintName - The name of the AuthorizationConstraint that the principal was authorized against
        error - AuthorizationError explaining the reason for the authorization failure. May be null.
        cause - The underlying cause of the authorization failure.
      • NotAuthorizedException

        public NotAuthorizedException​(java.lang.String authorizationConstaintName)
        Raises a NotAuthorizedException condition requiring the user to have authenticated against the AuthorizationConstraint, chaining the cause parameter as the underlying cause of the authorization failure.
        Parameters:
        authorizationConstaintName - The name of the AuthorizationConstraint that this principal failed authorization for.