Added method to generate the AuthorizationException with only a message

This commit is contained in:
Ignasi Barrera 2013-08-07 00:09:04 +02:00
parent bc0abbaa07
commit d8fe0c9c21
1 changed files with 8 additions and 4 deletions

View File

@ -30,11 +30,15 @@ public class AuthorizationException extends RuntimeException {
super();
}
public AuthorizationException(String arg0, Throwable arg1) {
super(arg0, arg1);
public AuthorizationException(String message, Throwable cause) {
super(message, cause);
}
public AuthorizationException(Throwable arg0) {
super(arg0);
public AuthorizationException(Throwable cause) {
super(cause);
}
public AuthorizationException(String message) {
super(message);
}
}