Package org.apache.mina.core
Class RuntimeIoException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- java.lang.RuntimeException
-
- org.apache.mina.core.RuntimeIoException
-
- All Implemented Interfaces:
java.io.Serializable
public class RuntimeIoException extends java.lang.RuntimeExceptionA unchecked version ofIOException.Please note that
RuntimeIoExceptionis different fromIOExceptionin that doesn't trigger force session close, whileIOExceptionforces disconnection.- Author:
- Apache MINA Project
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description RuntimeIoException()Create a new RuntimeIoException instanceRuntimeIoException(java.lang.String message)Create a new RuntimeIoException instanceRuntimeIoException(java.lang.String message, java.lang.Throwable cause)Create a new RuntimeIoException instanceRuntimeIoException(java.lang.Throwable cause)Create a new RuntimeIoException instance
-
-
-
Constructor Detail
-
RuntimeIoException
public RuntimeIoException()
Create a new RuntimeIoException instance
-
RuntimeIoException
public RuntimeIoException(java.lang.String message)
Create a new RuntimeIoException instance- Parameters:
message- The error message
-
RuntimeIoException
public RuntimeIoException(java.lang.String message, java.lang.Throwable cause)Create a new RuntimeIoException instance- Parameters:
message- The error messagecause- The original exception
-
RuntimeIoException
public RuntimeIoException(java.lang.Throwable cause)
Create a new RuntimeIoException instance- Parameters:
cause- The original exception
-
-