Package com.mapr.fs.hbase
Class RuntimeIOException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- java.lang.RuntimeException
-
- com.mapr.fs.hbase.RuntimeIOException
-
- All Implemented Interfaces:
java.io.Serializable
public class RuntimeIOException extends java.lang.RuntimeExceptionThis class is used to wrap a checked exceptions from a code which does not want to throw a checked exception.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description RuntimeIOException()default constructorRuntimeIOException(java.lang.String s)ConstructorRuntimeIOException(java.lang.String s, java.lang.Throwable t)Constructor taking a message and another exception.RuntimeIOException(java.lang.Throwable t)Constructor taking another exception.
-
-
-
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- messaget- Exception to grab data from.
-
-