Package tech.tablesaw.io
Class RuntimeIOException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- java.lang.RuntimeException
-
- tech.tablesaw.io.RuntimeIOException
-
- All Implemented Interfaces:
Serializable
public class RuntimeIOException extends RuntimeException
An Runtime exception that wraps IOException so that client code need not catch IOException in nearly every use of Tablesaw- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description RuntimeIOException(IOException cause)
Constructs a new Runtime exception from the given checked exception
-
Method Summary
-
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
-
-
-
Constructor Detail
-
RuntimeIOException
public RuntimeIOException(IOException cause)
Constructs a new Runtime exception from the given checked exception- Parameters:
cause
- An IO Exception
-
-