public class IOExceptionUnchecked extends CheckedExceptionTunnel
CheckedExceptionTunnel
for an IOException
.Constructor and Description |
---|
IOExceptionUnchecked(java.io.IOException checkedException)
Returns an
IOExceptionUnchecked from a IOException . |
IOExceptionUnchecked(java.lang.String msg)
Returns an
IOExceptionUnchecked from a newly created IOException
with given msg. |
IOExceptionUnchecked(java.lang.Throwable throwable)
Returns an
IOExceptionUnchecked from newly created IOException with
given throwable as its cause. |
Modifier and Type | Method and Description |
---|---|
java.io.IOException |
getCause() |
getMessage, printFullStackTrace, printFullStackTrace, printFullStackTrace, printStackTrace, printStackTrace, toString, unwrapIfNecessary, unwrapIfNecessary, wrapIfNecessary, wrapIfNecessary
public IOExceptionUnchecked(java.io.IOException checkedException)
IOExceptionUnchecked
from a IOException
.checkedException
- The checked exception to tunnel.public IOExceptionUnchecked(java.lang.String msg)
IOExceptionUnchecked
from a newly created IOException
with given msg.msg
- The checked exception to tunnel.public IOExceptionUnchecked(java.lang.Throwable throwable)
IOExceptionUnchecked
from newly created IOException
with
given throwable as its cause.throwable
- The throwable to use the cause of the created IOException
.