01: package com.mockrunner.base;
02:
03: /**
04: * Will be thrown by the <code>verify</code> methods
05: * of all test modules.
06: */
07: public class VerifyFailedException extends RuntimeException {
08: public VerifyFailedException() {
09: super ();
10: }
11:
12: public VerifyFailedException(String message) {
13: super(message);
14: }
15: }
|