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

net.serenitybdd.rest.utils.RestRuntimeException Maven / Gradle / Ivy

The newest version!
package net.serenitybdd.rest.utils;

public class RestRuntimeException extends RuntimeException {
    public RestRuntimeException(String message) {
        super(message);
    }

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




© 2015 - 2025 Weber Informatics LLC | Privacy Policy