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

info.novatec.testit.webtester.WebTesterException Maven / Gradle / Ivy

package info.novatec.testit.webtester;

/**
 * Base exception type for all exceptions directly thrown by WebTester.
 *
 * @since 2.0
 */
@SuppressWarnings("serial")
public class WebTesterException extends RuntimeException {

    protected WebTesterException(String message) {
        super(message);
    }

    protected WebTesterException(String message, Throwable cause) {
        super(message, cause);
    }

    protected WebTesterException(Throwable cause) {
        super(cause);
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy