Class RuntimeIOException

  • All Implemented Interfaces:
    java.io.Serializable

    public class RuntimeIOException
    extends java.lang.RuntimeException
    This class is used to wrap a checked exceptions from a code which does not want to throw a checked exception.
    See Also:
    Serialized Form
    • 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()
        default constructor
      • RuntimeIOException

        public RuntimeIOException​(java.lang.String s)
        Constructor
        Parameters:
        s - message
      • RuntimeIOException

        public RuntimeIOException​(java.lang.Throwable t)
        Constructor taking another exception.
        Parameters:
        t - Exception to grab data from.
      • RuntimeIOException

        public RuntimeIOException​(java.lang.String s,
                                  java.lang.Throwable t)
        Constructor taking a message and another exception.
        Parameters:
        s - message
        t - Exception to grab data from.