Package org.java_websocket.exceptions
Class NotSendableException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- java.lang.RuntimeException
-
- org.java_websocket.exceptions.NotSendableException
-
- All Implemented Interfaces:
java.io.Serializable
public class NotSendableException extends java.lang.RuntimeExceptionexception which indicates the frame payload is not sendable- See Also:
- Serialized Form
-
-
Field Summary
Fields Modifier and Type Field Description private static longserialVersionUIDSerializable
-
Constructor Summary
Constructors Constructor Description NotSendableException(java.lang.String s)constructor for a NotSendableExceptionNotSendableException(java.lang.String s, java.lang.Throwable t)constructor for a NotSendableExceptionNotSendableException(java.lang.Throwable t)constructor for a NotSendableException
-
-
-
Field Detail
-
serialVersionUID
private static final long serialVersionUID
Serializable- See Also:
- Constant Field Values
-
-
Constructor Detail
-
NotSendableException
public NotSendableException(java.lang.String s)
constructor for a NotSendableException- Parameters:
s- the detail message.
-
NotSendableException
public NotSendableException(java.lang.Throwable t)
constructor for a NotSendableException- Parameters:
t- the throwable causing this exception.
-
NotSendableException
public NotSendableException(java.lang.String s, java.lang.Throwable t)constructor for a NotSendableException- Parameters:
s- the detail message.t- the throwable causing this exception.
-
-