Package org.apache.mina.core.filterchain
Class IoFilterLifeCycleException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- java.lang.RuntimeException
-
- org.apache.mina.core.filterchain.IoFilterLifeCycleException
-
- All Implemented Interfaces:
java.io.Serializable
public class IoFilterLifeCycleException extends java.lang.RuntimeExceptionARuntimeExceptionwhich is thrown whenIoFilter.init()orIoFilter.onPostAdd(IoFilterChain, String, org.apache.mina.core.filterchain.IoFilter.NextFilter)failed.- Author:
- Apache MINA Project
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description IoFilterLifeCycleException()Creates a new IoFilterLifeCycleException instanceIoFilterLifeCycleException(java.lang.String message)Creates a new IoFilterLifeCycleException instanceIoFilterLifeCycleException(java.lang.String message, java.lang.Throwable cause)Creates a new IoFilterLifeCycleException instanceIoFilterLifeCycleException(java.lang.Throwable cause)Creates a new IoFilterLifeCycleException instance
-
-
-
Constructor Detail
-
IoFilterLifeCycleException
public IoFilterLifeCycleException()
Creates a new IoFilterLifeCycleException instance
-
IoFilterLifeCycleException
public IoFilterLifeCycleException(java.lang.String message)
Creates a new IoFilterLifeCycleException instance- Parameters:
message- The error message
-
IoFilterLifeCycleException
public IoFilterLifeCycleException(java.lang.String message, java.lang.Throwable cause)Creates a new IoFilterLifeCycleException instance- Parameters:
message- The error messagecause- The original error cause
-
IoFilterLifeCycleException
public IoFilterLifeCycleException(java.lang.Throwable cause)
Creates a new IoFilterLifeCycleException instance- Parameters:
cause- The original error cause
-
-