Class GuacamoleClientOverrunException

All Implemented Interfaces:
Serializable

public class GuacamoleClientOverrunException extends GuacamoleClientException
An exception which is thrown when the client has sent too much data. This usually indicates that a server-side buffer is not large enough to accommodate the data, or protocol specifications prohibit data of the size received.
See Also:
  • Constructor Details

    • GuacamoleClientOverrunException

      public GuacamoleClientOverrunException(String message, Throwable cause)
      Creates a new GuacamoleClientOverrunException with the given message and cause.
      Parameters:
      message - A human readable description of the exception that occurred.
      cause - The cause of this exception.
    • GuacamoleClientOverrunException

      public GuacamoleClientOverrunException(String message)
      Creates a new GuacamoleClientOverrunException with the given message.
      Parameters:
      message - A human readable description of the exception that occurred.
    • GuacamoleClientOverrunException

      public GuacamoleClientOverrunException(Throwable cause)
      Creates a new GuacamoleClientOverrunException with the given cause.
      Parameters:
      cause - The cause of this exception.
  • Method Details

    • getStatus

      public GuacamoleStatus getStatus()
      Description copied from class: GuacamoleException
      Returns 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:
      getStatus in class GuacamoleClientException
      Returns:
      The corresponding Guacamole status.