1
0
mirror of https://github.com/pcvolkmer/onkostar-plugin-dnpm.git synced 2025-07-03 09:42:54 +00:00

Issue #24: Füge Annotationen und Spring-AOP Aspect zum Absichern von Methodenaufrufen hinzu

This commit is contained in:
2023-04-06 14:42:35 +02:00
parent dfbcf3186e
commit e0dba6f4ee
7 changed files with 125 additions and 9 deletions

View File

@ -0,0 +1,13 @@
package DNPM.security;
public class IllegalSecuredObjectAccessException extends RuntimeException {
public IllegalSecuredObjectAccessException() {
super();
}
public IllegalSecuredObjectAccessException(String message) {
super(message);
}
}