Class MockRuntimeException

java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
com.helger.base.mock.exception.MockRuntimeException
All Implemented Interfaces:
IMockException, Serializable

public class MockRuntimeException extends RuntimeException implements IMockException
Runtime exception for test cases.
Author:
Philip Helger
See Also:
  • Constructor Details

    • MockRuntimeException

      public MockRuntimeException()
      Default constructor.
    • MockRuntimeException

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

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

      public MockRuntimeException(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.