Package com.helger.base.mock.exception
Class MockIOException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.io.IOException
com.helger.base.mock.exception.MockIOException
- All Implemented Interfaces:
IMockException,Serializable
IO exception for test cases.
- Author:
- Philip Helger
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionDefault constructor.Constructor with a message.MockIOException(String s, Throwable t) Constructor with a message and a cause.Constructor with a cause. -
Method Summary
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Constructor Details
-
MockIOException
public MockIOException()Default constructor. -
MockIOException
Constructor with a message.- Parameters:
s- The detail message. May benull.
-
MockIOException
Constructor with a cause.- Parameters:
t- The cause. May benull.
-
MockIOException
Constructor with a message and a cause.- Parameters:
s- The detail message. May benull.t- The cause. May benull.
-