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

org.test4j.exception.IllegalStepException Maven / Gradle / Ivy

There is a newer version: 2.7.0
Show newest version
package org.test4j.exception;

public class IllegalStepException extends RuntimeException {

    public IllegalStepException() {
    }

    public IllegalStepException(String message) {
        super(message);
    }

    public IllegalStepException(String message, Throwable cause) {
        super(message, cause);
    }

    public IllegalStepException(Throwable cause) {
        super(cause);
    }

    public IllegalStepException(String message, Throwable cause, boolean enableSuppression, boolean writableStackTrace) {
        super(message, cause, enableSuppression, writableStackTrace);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy