1 20 package org.apache.mina.filter.codec; 21 22 29 public class ProtocolEncoderException extends ProtocolCodecException { 30 private static final long serialVersionUID = 8752989973624459604L; 31 32 35 public ProtocolEncoderException() { 36 } 37 38 41 public ProtocolEncoderException(String message) { 42 super(message); 43 } 44 45 48 public ProtocolEncoderException(Throwable cause) { 49 super(cause); 50 } 51 52 56 public ProtocolEncoderException(String message, Throwable cause) { 57 super(message, cause); 58 } 59 } | Popular Tags |