Package org.java_websocket.exceptions
Class IncompleteException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- org.java_websocket.exceptions.IncompleteException
-
- All Implemented Interfaces:
java.io.Serializable
public class IncompleteException extends java.lang.Exception
Exception which indicates that the frame is not yet complete- See Also:
- Serialized Form
-
-
Field Summary
Fields Modifier and Type Field Description private int
preferredSize
The preferred sizeprivate static long
serialVersionUID
It's Serializable.
-
Constructor Summary
Constructors Constructor Description IncompleteException(int preferredSize)
Constructor for the preferred size of a frame
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description int
getPreferredSize()
Getter for the preferredSize
-
-
-
Field Detail
-
serialVersionUID
private static final long serialVersionUID
It's Serializable.- See Also:
- Constant Field Values
-
preferredSize
private final int preferredSize
The preferred size
-
-