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

public class MockIOException extends IOException implements IMockException
IO exception for test cases.
Author:
Philip Helger
See Also:
  • Constructor Details

    • MockIOException

      public MockIOException()
      Default constructor.
    • MockIOException

      public MockIOException(String s)
      Constructor with a message.
      Parameters:
      s - The detail message. May be null.
    • MockIOException

      public MockIOException(Throwable t)
      Constructor with a cause.
      Parameters:
      t - The cause. May be null.
    • MockIOException

      public MockIOException(String s, Throwable t)
      Constructor with a message and a cause.
      Parameters:
      s - The detail message. May be null.
      t - The cause. May be null.