KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > xsocket > MaxReadSizeExceededException


1 package org.xsocket;
2
3 import java.nio.BufferUnderflowException JavaDoc;
4
5
6 /**
7  * Unchecked exception thrown when a read operation reaches the predefined limit,
8  * without getting the required data
9  *
10  * @author grro
11  */

12 public class MaxReadSizeExceededException extends BufferUnderflowException JavaDoc {
13
14     private static final long serialVersionUID = -1906216307105182850L;
15
16     
17     public MaxReadSizeExceededException() {
18         
19     }
20 }
21
Popular Tags