
xy.ui.testing.util.TestFailure Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of swing-testing-toolkit Show documentation
Show all versions of swing-testing-toolkit Show documentation
Java Swing UI testing toolkit
The newest version!
package xy.ui.testing.util;
/**
* Test execution failure exception.
*
* @author olitank
*
*/
public class TestFailure extends RuntimeException {
private static final long serialVersionUID = 1L;
public TestFailure() {
super();
}
public TestFailure(String message, Throwable cause) {
super(message, cause);
}
public TestFailure(String message) {
super(message);
}
public TestFailure(Throwable cause) {
super(cause);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy