Package org.apache.guacamole
Class GuacamoleClientException
- java.lang.Object
- 
- java.lang.Throwable
- 
- java.lang.Exception
- 
- org.apache.guacamole.GuacamoleException
- 
- org.apache.guacamole.GuacamoleClientException
 
 
 
 
- 
- All Implemented Interfaces:
- Serializable
 - Direct Known Subclasses:
- GuacamoleClientBadTypeException,- GuacamoleClientOverrunException,- GuacamoleClientTimeoutException,- GuacamoleClientTooManyException,- GuacamoleResourceClosedException,- GuacamoleResourceConflictException,- GuacamoleResourceNotFoundException,- GuacamoleSecurityException
 
 public class GuacamoleClientException extends GuacamoleException A generic exception thrown when part of the Guacamole API encounters an error in the client's request. Such an error, if correctable, usually requires correction on the client side, not the server.- See Also:
- Serialized Form
 
- 
- 
Constructor SummaryConstructors Constructor Description GuacamoleClientException(String message)Creates a new GuacamoleException with the given message.GuacamoleClientException(String message, Throwable cause)Creates a new GuacamoleException with the given message and cause.GuacamoleClientException(Throwable cause)Creates a new GuacamoleException with the given cause.
 - 
Method SummaryAll Methods Instance Methods Concrete Methods Modifier and Type Method Description GuacamoleStatusgetStatus()Returns the Guacamole status associated with this exception.- 
Methods inherited from class org.apache.guacamole.GuacamoleExceptiongetHttpStatusCode, getWebSocketCode
 - 
Methods inherited from class java.lang.ThrowableaddSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
 
- 
 
- 
- 
- 
Constructor Detail- 
GuacamoleClientExceptionpublic GuacamoleClientException(String message, Throwable cause) Creates a new GuacamoleException with the given message and cause.- Parameters:
- message- A human readable description of the exception that occurred.
- cause- The cause of this exception.
 
 - 
GuacamoleClientExceptionpublic GuacamoleClientException(String message) Creates a new GuacamoleException with the given message.- Parameters:
- message- A human readable description of the exception that occurred.
 
 - 
GuacamoleClientExceptionpublic GuacamoleClientException(Throwable cause) Creates a new GuacamoleException with the given cause.- Parameters:
- cause- The cause of this exception.
 
 
- 
 - 
Method Detail- 
getStatuspublic GuacamoleStatus getStatus() Description copied from class:GuacamoleExceptionReturns the Guacamole status associated with this exception. This status can then be easily translated into an HTTP error code or Guacamole protocol error code.- Overrides:
- getStatusin class- GuacamoleException
- Returns:
- The corresponding Guacamole status.
 
 
- 
 
-