01: package com.technoetic.xplanner.security.auth;
02:
03: /**
04: * This exception is for situation where a user has been authenticated but they
05: * are not authorized to perform a specified action.
06: */
07: public class AuthorizationException extends RuntimeException {
08: public AuthorizationException() {
09: }
10:
11: public AuthorizationException(String message) {
12: super (message);
13: }
14:
15: public AuthorizationException(String message, Throwable cause) {
16: super (message, cause);
17: }
18:
19: public AuthorizationException(Throwable cause) {
20: super(cause);
21: }
22: }
|