001 package com.mockrunner.base;
002
003 /**
004 * Will be thrown by the <code>verify</code> methods
005 * of all test modules.
006 */
007 public class VerifyFailedException extends RuntimeException
008 {
009 public VerifyFailedException()
010 {
011 super();
012 }
013
014 public VerifyFailedException(String message)
015 {
016 super(message);
017 }
018 }