fitnesse.testsystems.slim.TestingInterruptedException 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.testsystems.slim;
import fitnesse.testsystems.TestExecutionException;
public class TestingInterruptedException extends TestExecutionException {
public TestingInterruptedException(final Exception e) {
super(e);
}
public TestingInterruptedException(final String message, final Exception exception) {
super(message, exception);
}
}