fitnesse.slim.StopTestSlimException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of fitnesse Show documentation
Show all versions of fitnesse Show documentation
The fully integrated standalone wiki, and acceptance testing framework.
The newest version!
package fitnesse.slim;
public class StopTestSlimException extends SlimException {
private static final String STOP_EXCEPTION_TAG = "ABORT_SLIM_TEST";
public StopTestSlimException(String message) {
super(message, STOP_EXCEPTION_TAG);
}
public StopTestSlimException(Throwable cause) {
super(cause, STOP_EXCEPTION_TAG);
}
public StopTestSlimException(String message, Throwable cause) {
super(message, cause, STOP_EXCEPTION_TAG);
}
}