com.mockrunner.base.VerifyFailedException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of mockrunner-core Show documentation
Show all versions of mockrunner-core Show documentation
Core classes common to all Mockrunner modules
package com.mockrunner.base;
/**
* Will be thrown by the verify
methods
* of all test modules.
*/
public class VerifyFailedException extends RuntimeException
{
public VerifyFailedException()
{
super();
}
public VerifyFailedException(String message)
{
super(message);
}
}