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

fitnesse.reporting.FormatterException Maven / Gradle / Ivy

The 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 - 2025 Weber Informatics LLC | Privacy Policy