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