fitnesse.reporting.FormatterException 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.
package fitnesse.reporting;
/**
* This exception is thrown from within a formatter to denote something is
* wrong. Throwing a runtime exception from within a formatter will
* terminate test execution.
*/
public class FormatterException extends RuntimeException {
public FormatterException(final String message, final Throwable cause) {
super(message, cause);
}
}