Class InvalidHandshakeException

All Implemented Interfaces:
Serializable

public class InvalidHandshakeException extends InvalidDataException
exception which indicates that a invalid handshake was received (CloseFrame.PROTOCOL_ERROR)
See Also:
  • Constructor Details

    • InvalidHandshakeException

      public InvalidHandshakeException()
      constructor for a InvalidHandshakeException

      calling InvalidDataException with closecode PROTOCOL_ERROR

    • InvalidHandshakeException

      public InvalidHandshakeException(String s, Throwable t)
      constructor for a InvalidHandshakeException

      calling InvalidDataException with closecode PROTOCOL_ERROR

      Parameters:
      s - the detail message.
      t - the throwable causing this exception.
    • InvalidHandshakeException

      public InvalidHandshakeException(String s)
      constructor for a InvalidHandshakeException

      calling InvalidDataException with closecode PROTOCOL_ERROR

      Parameters:
      s - the detail message.
    • InvalidHandshakeException

      public InvalidHandshakeException(Throwable t)
      constructor for a InvalidHandshakeException

      calling InvalidDataException with closecode PROTOCOL_ERROR

      Parameters:
      t - the throwable causing this exception.