Class GuacamoleInvalidCredentialsException
- java.lang.Object
 - 
- java.lang.Throwable
 - 
- java.lang.Exception
 - 
- org.apache.guacamole.GuacamoleException
 - 
- org.apache.guacamole.GuacamoleClientException
 - 
- org.apache.guacamole.GuacamoleSecurityException
 - 
- org.apache.guacamole.GuacamoleUnauthorizedException
 - 
- org.apache.guacamole.net.auth.credentials.GuacamoleCredentialsException
 - 
- org.apache.guacamole.net.auth.credentials.GuacamoleInvalidCredentialsException
 
 
 
 
 
 
 
 
 
- 
- All Implemented Interfaces:
 Serializable
- Direct Known Subclasses:
 TranslatableGuacamoleInvalidCredentialsException
public class GuacamoleInvalidCredentialsException extends GuacamoleCredentialsException
A security-related exception thrown when access is denied to a user because the provided credentials are invalid. Additional information describing the form of valid credentials is provided.- See Also:
 - Serialized Form
 
 
- 
- 
Constructor Summary
Constructors Constructor Description GuacamoleInvalidCredentialsException(String message, Throwable cause, CredentialsInfo credentialsInfo)Creates a new GuacamoleInvalidCredentialsException with the given message, cause, and associated credential information.GuacamoleInvalidCredentialsException(String message, CredentialsInfo credentialsInfo)Creates a new GuacamoleInvalidCredentialsException with the given message and associated credential information.GuacamoleInvalidCredentialsException(Throwable cause, CredentialsInfo credentialsInfo)Creates a new GuacamoleInvalidCredentialsException with the given cause and associated credential information. 
- 
Method Summary
- 
Methods inherited from class org.apache.guacamole.net.auth.credentials.GuacamoleCredentialsException
getCredentialsInfo 
- 
Methods inherited from class org.apache.guacamole.GuacamoleException
getHttpStatusCode, getWebSocketCode 
- 
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString 
 - 
 
 - 
 
- 
- 
Constructor Detail
- 
GuacamoleInvalidCredentialsException
public GuacamoleInvalidCredentialsException(String message, Throwable cause, CredentialsInfo credentialsInfo)
Creates a new GuacamoleInvalidCredentialsException 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.
 
- 
GuacamoleInvalidCredentialsException
public GuacamoleInvalidCredentialsException(String message, CredentialsInfo credentialsInfo)
Creates a new GuacamoleInvalidCredentialsException 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.
 
- 
GuacamoleInvalidCredentialsException
public GuacamoleInvalidCredentialsException(Throwable cause, CredentialsInfo credentialsInfo)
Creates a new GuacamoleInvalidCredentialsException with the given cause and associated credential information.- Parameters:
 cause- The cause of this exception.credentialsInfo- Information describing the form of valid credentials.
 
 - 
 
 -