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

lv.ctco.cukesrest.CukesRuntimeException Maven / Gradle / Ivy

The newest version!
package lv.ctco.cukesrest;

public class CukesRuntimeException extends RuntimeException {
    public CukesRuntimeException(Throwable cause) {
        super(cause);
    }

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

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy