Class RuntimeIOException

All Implemented Interfaces:
Serializable

public class RuntimeIOException extends RuntimeException
This class is used to wrap a checked exceptions from a code which does not want to throw a checked exception.
See Also:
  • Constructor Details

    • RuntimeIOException

      public RuntimeIOException()
      default constructor
    • RuntimeIOException

      public RuntimeIOException(String s)
      Constructor
      Parameters:
      s - message
    • RuntimeIOException

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

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