Class GuacamoleInsufficientCredentialsException

  • All Implemented Interfaces:
    Serializable
    Direct Known Subclasses:
    TranslatableGuacamoleInsufficientCredentialsException

    public class GuacamoleInsufficientCredentialsException
    extends GuacamoleCredentialsException
    A security-related exception thrown when access is denied to a user because the provided credentials are not sufficient for authentication to succeed. The validity or invalidity of the given credentials is not specified, and more information is needed before a decision can be made. Additional information describing the form of valid credentials is provided.
    See Also:
    Serialized Form
    • Constructor Detail

      • GuacamoleInsufficientCredentialsException

        public GuacamoleInsufficientCredentialsException​(String message,
                                                         Throwable cause,
                                                         CredentialsInfo credentialsInfo)
        Creates a new GuacamoleInsufficientCredentialsException with the given message, cause, and associated credential information.
        Parameters:
        message - A human readable description of the exception that occurred.
        cause - The cause of this exception.
        credentialsInfo - Information describing the form of valid credentials.
      • GuacamoleInsufficientCredentialsException

        public GuacamoleInsufficientCredentialsException​(String message,
                                                         CredentialsInfo credentialsInfo)
        Creates a new GuacamoleInsufficientCredentialsException with the given message and associated credential information.
        Parameters:
        message - A human readable description of the exception that occurred.
        credentialsInfo - Information describing the form of valid credentials.
      • GuacamoleInsufficientCredentialsException

        public GuacamoleInsufficientCredentialsException​(Throwable cause,
                                                         CredentialsInfo credentialsInfo)
        Creates a new GuacamoleInsufficientCredentialsException with the given cause and associated credential information.
        Parameters:
        cause - The cause of this exception.
        credentialsInfo - Information describing the form of valid credentials.