Package org.java_websocket.exceptions
Class LimitExedeedException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- org.java_websocket.exceptions.InvalidDataException
-
- org.java_websocket.exceptions.LimitExedeedException
-
- All Implemented Interfaces:
Serializable
public class LimitExedeedException extends InvalidDataException
exception which indicates that the message limited was exedeeded (CloseFrame.TOOBIG)- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description LimitExedeedException()
constructor for a LimitExedeedExceptionLimitExedeedException(String s)
constructor for a LimitExedeedException
-
Method Summary
-
Methods inherited from class org.java_websocket.exceptions.InvalidDataException
getCloseCode
-
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
-
-
-
Constructor Detail
-
LimitExedeedException
public LimitExedeedException()
constructor for a LimitExedeedExceptioncalling InvalidDataException with closecode TOOBIG
-
LimitExedeedException
public LimitExedeedException(String s)
constructor for a LimitExedeedExceptioncalling InvalidDataException with closecode TOOBIG
- Parameters:
s
- the detail message.
-
-