Skip to content
Snippets Groups Projects

Add CSRF filter + response validation to the core Quarkus lib

Merged Martin Lowe requested to merge malowe/master/3 into master
Files
17
package org.eclipsefoundation.core.exception;
/**
* Represents an unauthorized request with no redirect (standard UnauthorizedException gets routed
* to OIDC login page when active, which is not desired).
*
* @author Martin Lowe
*/
public class FinalUnauthorizedException extends RuntimeException {
public FinalUnauthorizedException(String message) {
super(message);
}
/** */
private static final long serialVersionUID = 1L;
}
Loading