Class NotAuthorizedException

    • Constructor Detail

      • NotAuthorizedException

        public NotAuthorizedException​(String message)
        Constructs a new exception with the specified detail message and principal.
        Parameters:
        message - the detail message (which is saved for later retrieval by the Throwable.getMessage() method). (A null value is permitted.)
      • NotAuthorizedException

        public NotAuthorizedException​(String message,
                                      Throwable cause)
        Constructs a new exception with the specified detail message and cause.

        If message is null, then the detail message associated with cause is automatically used as this exception's detail message.

        Parameters:
        message - the detail message (which is saved for later retrieval by the Throwable.getMessage() method). (A null value is permitted.)
        cause - the cause (which is saved for later retrieval by the GemFireSecurityException.getCause() method). (A null value is permitted, and indicates that the cause is nonexistent or unknown.)
      • NotAuthorizedException

        public NotAuthorizedException​(String message,
                                      Principal principal)
        Constructs a new exception with the specified detail message and principal.
        Parameters:
        message - the detail message (which is saved for later retrieval by the Throwable.getMessage() method). (A null value is permitted.)
        principal - the principal for which authorization failed. (A null value is permitted.)
      • NotAuthorizedException

        public NotAuthorizedException​(String message,
                                      Throwable cause,
                                      Principal principal)
        Constructs a new exception with the specified detail message, cause and principal.

        If message is null, then the detail message associated with cause is automatically used as this exception's detail message.

        Parameters:
        message - the detail message (which is saved for later retrieval by the Throwable.getMessage() method). (A null value is permitted.)
        cause - the cause (which is saved for later retrieval by the GemFireSecurityException.getCause() method). (A null value is permitted, and indicates that the cause is nonexistent or unknown.)
        principal - the principal for which authorization failed. (A null value is permitted.)
    • Method Detail

      • getPrincipal

        public Principal getPrincipal()
        Returns the principal for which authorization failed.
        Returns:
        the principal for which authorization failed.