Class InvalidFrameException

All Implemented Interfaces:
Serializable

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

    • InvalidFrameException

      public InvalidFrameException()
      constructor for a InvalidFrameException

      calling InvalidDataException with closecode PROTOCOL_ERROR

    • InvalidFrameException

      public InvalidFrameException(String s)
      constructor for a InvalidFrameException

      calling InvalidDataException with closecode PROTOCOL_ERROR

      Parameters:
      s - the detail message.
    • InvalidFrameException

      public InvalidFrameException(Throwable t)
      constructor for a InvalidFrameException

      calling InvalidDataException with closecode PROTOCOL_ERROR

      Parameters:
      t - the throwable causing this exception.
    • InvalidFrameException

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

      calling InvalidDataException with closecode PROTOCOL_ERROR

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