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:
Serializable
public class IoFilterLifeCycleException extends RuntimeException
ARuntimeException
which 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(String message)
Creates a new IoFilterLifeCycleException instanceIoFilterLifeCycleException(String message, Throwable cause)
Creates a new IoFilterLifeCycleException instanceIoFilterLifeCycleException(Throwable cause)
Creates a new IoFilterLifeCycleException instance
-
Method Summary
-
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
-
-
-
Constructor Detail
-
IoFilterLifeCycleException
public IoFilterLifeCycleException()
Creates a new IoFilterLifeCycleException instance
-
IoFilterLifeCycleException
public IoFilterLifeCycleException(String message)
Creates a new IoFilterLifeCycleException instance- Parameters:
message
- The error message
-
IoFilterLifeCycleException
public IoFilterLifeCycleException(String message, Throwable cause)
Creates a new IoFilterLifeCycleException instance- Parameters:
message
- The error messagecause
- The original error cause
-
IoFilterLifeCycleException
public IoFilterLifeCycleException(Throwable cause)
Creates a new IoFilterLifeCycleException instance- Parameters:
cause
- The original error cause
-
-