1 20 package org.apache.mina.filter.codec; 21 22 30 public class ProtocolCodecException extends Exception { 31 private static final long serialVersionUID = 5939878548186330695L; 32 33 36 public ProtocolCodecException() { 37 } 38 39 42 public ProtocolCodecException(String message) { 43 super(message); 44 } 45 46 49 public ProtocolCodecException(Throwable cause) { 50 super(cause); 51 } 52 53 57 public ProtocolCodecException(String message, Throwable cause) { 58 super(message, cause); 59 } 60 } | Popular Tags |