1 20 package org.apache.mina.common; 21 22 30 public class BufferDataException extends RuntimeException { 31 private static final long serialVersionUID = -4138189188602563502L; 32 33 public BufferDataException() { 34 super(); 35 } 36 37 public BufferDataException(String message) { 38 super(message); 39 } 40 41 public BufferDataException(String message, Throwable cause) { 42 super(message, cause); 43 } 44 45 public BufferDataException(Throwable cause) { 46 super(cause); 47 } 48 49 } 50 | Popular Tags |