
net.serenitybdd.rest.utils.RestRuntimeException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of serenity-rest-assured Show documentation
Show all versions of serenity-rest-assured Show documentation
Serenity RestAssured integration
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