summaryrefslogtreecommitdiff
path: root/src/main/java/DNPM/security/IllegalSecuredObjectAccessException.java
blob: 542b6043549e77e163cc5a85763b896d2d5756ae (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
package DNPM.security;

public class IllegalSecuredObjectAccessException extends RuntimeException {

    public IllegalSecuredObjectAccessException() {
        super();
    }

    public IllegalSecuredObjectAccessException(String message) {
        super(message);
    }

}