
rocks.bastion.core.event.BastionFailureEvent Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of bastion Show documentation
Show all versions of bastion Show documentation
A Java library for testing HTTP API endpoints.
The newest version!
package rocks.bastion.core.event;
import rocks.bastion.core.HttpRequest;
import rocks.bastion.core.Response;
/**
* @author Kyle
*/
public class BastionFailureEvent extends BastionEvent {
private AssertionError assertionError;
public BastionFailureEvent(HttpRequest request, Response response, AssertionError assertionError) {
super(request, response);
this.assertionError = assertionError;
}
public AssertionError getAssertionError() {
return assertionError;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy