1 package org.xsocket;2 3 import java.nio.BufferUnderflowException ;4 5 6 /**7 * Unchecked exception thrown when a read operation reaches the predefined limit, 8 * without getting the required data9 * 10 * @author grro11 */12 public class MaxReadSizeExceededException extends BufferUnderflowException {13 14 private static final long serialVersionUID = -1906216307105182850L;15 16 17 public MaxReadSizeExceededException() {18 19 }20 }21