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

fitnesse.testsystems.slim.TestingInterruptedException Maven / Gradle / Ivy

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy