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

rocks.bastion.core.event.BastionFailureEvent Maven / Gradle / Ivy

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