public class MockObjectsException
extends java.lang.RuntimeException
MockObjectsException class is a RuntimeException indicating a general problem
with the Mock Objects infrastructure.RuntimeException,
Serialized Form| Constructor and Description |
|---|
MockObjectsException()
Constructs a new instance of the
MockObjectsException class with no message or underlying cause. |
MockObjectsException(java.lang.String message)
Constructs a new instance of the
MockObjectsException class initialized with
the given message describing the problem. |
MockObjectsException(java.lang.String message,
java.lang.Throwable cause)
Constructs a new instance of the
MockObjectsException class initialized with
the given message describing the underlying problem as well as the cause
of the underlying problem. |
MockObjectsException(java.lang.Throwable cause)
Constructs a new instance of the
MockObjectsException class initialized with
the given cause of the underlying problem. |
public MockObjectsException()
MockObjectsException class with no message or underlying cause.public MockObjectsException(java.lang.String message)
MockObjectsException class initialized with
the given message describing the problem.message - String describing the problem.Stringpublic MockObjectsException(java.lang.Throwable cause)
MockObjectsException class initialized with
the given cause of the underlying problem.cause - Throwable object containing the cause of this exception.Throwablepublic MockObjectsException(java.lang.String message,
java.lang.Throwable cause)
MockObjectsException class initialized with
the given message describing the underlying problem as well as the cause
of the underlying problem.message - String describing the problem.cause - Throwable object containing the cause of this exception.Throwable,
String