All Downloads are FREE. Search and download functionalities are using the official Maven repository.

fitnesse.reporting.FormatterException Maven / Gradle / Ivy

There is a newer version: 20181217
Show newest version
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);
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy