Files
user-management/src/main/java/com/cleverthis/authservice/exception/PermissionCheckException.java
T
Abed 66767d9e1e 1. Implement Access Control in auth-service via Traefik Forward Auth
2. Add keycloak admin client, to fetch as admin from keycloak
3. Add /auth endpoint, that will parse the request, and decide for auth
2025-05-13 00:56:35 +02:00

15 lines
372 B
Java

package com.cleverthis.authservice.exception;
/**
* Custom exception for errors during permission checks.
*/
public class PermissionCheckException extends RuntimeException {
public PermissionCheckException(String message) {
super(message);
}
public PermissionCheckException(String message, Throwable cause) {
super(message, cause);
}
}