Class RuntimeIoException

  • All Implemented Interfaces:
    java.io.Serializable

    public class RuntimeIoException
    extends java.lang.RuntimeException
    A unchecked version of IOException.

    Please note that RuntimeIoException is different from IOException in that doesn't trigger force session close, while IOException forces disconnection.

    Author:
    Apache MINA Project
    See Also:
    Serialized Form
    • Constructor Summary

      Constructors 
      Constructor Description
      RuntimeIoException()
      Create a new RuntimeIoException instance
      RuntimeIoException​(java.lang.String message)
      Create a new RuntimeIoException instance
      RuntimeIoException​(java.lang.String message, java.lang.Throwable cause)
      Create a new RuntimeIoException instance
      RuntimeIoException​(java.lang.Throwable cause)
      Create a new RuntimeIoException instance
    • Method Summary

      • Methods inherited from class java.lang.Throwable

        addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
    • 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 message
        cause - The original exception
      • RuntimeIoException

        public RuntimeIoException​(java.lang.Throwable cause)
        Create a new RuntimeIoException instance
        Parameters:
        cause - The original exception