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.RuntimeException
A unchecked version ofIOException
.Please note that
RuntimeIoException
is different fromIOException
in that doesn't trigger force session close, whileIOException
forces 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
-
-