Package patterntesting.runtime.io
Class IORuntimeException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- java.lang.RuntimeException
-
- patterntesting.runtime.io.IORuntimeException
-
- All Implemented Interfaces:
java.io.Serializable
public class IORuntimeException extends java.lang.RuntimeException
If you want to throw an IOException as unchecked exception you can use this exception here.- Since:
- 1.7 (30.12.2016)
- Version:
- $Revision: 1.1 $
- Author:
- oboehm
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description IORuntimeException(java.lang.String message)
Instantiates a new IO runtime exception.IORuntimeException(java.lang.String message, java.lang.Throwable cause)
Instantiates a new IO runtime exception.IORuntimeException(java.lang.String message, java.lang.Throwable cause, boolean enableSuppression, boolean writableStackTrace)
Instantiates a new IO runtime exception.IORuntimeException(java.lang.Throwable cause)
Instantiates a new IO runtime exception.
-
-
-
Constructor Detail
-
IORuntimeException
public IORuntimeException(java.lang.String message)
Instantiates a new IO runtime exception.- Parameters:
message
- the message
-
IORuntimeException
public IORuntimeException(java.lang.Throwable cause)
Instantiates a new IO runtime exception.- Parameters:
cause
- the cause
-
IORuntimeException
public IORuntimeException(java.lang.String message, java.lang.Throwable cause)
Instantiates a new IO runtime exception.- Parameters:
message
- the messagecause
- the cause
-
IORuntimeException
public IORuntimeException(java.lang.String message, java.lang.Throwable cause, boolean enableSuppression, boolean writableStackTrace)
Instantiates a new IO runtime exception.- Parameters:
message
- the messagecause
- the causeenableSuppression
- the enable suppressionwritableStackTrace
- the writable stack trace
-
-