mirror of https://github.com/apache/jclouds.git
Added method to generate the AuthorizationException with only a message
This commit is contained in:
parent
bc0abbaa07
commit
d8fe0c9c21
|
@ -30,11 +30,15 @@ public class AuthorizationException extends RuntimeException {
|
||||||
super();
|
super();
|
||||||
}
|
}
|
||||||
|
|
||||||
public AuthorizationException(String arg0, Throwable arg1) {
|
public AuthorizationException(String message, Throwable cause) {
|
||||||
super(arg0, arg1);
|
super(message, cause);
|
||||||
}
|
}
|
||||||
|
|
||||||
public AuthorizationException(Throwable arg0) {
|
public AuthorizationException(Throwable cause) {
|
||||||
super(arg0);
|
super(cause);
|
||||||
|
}
|
||||||
|
|
||||||
|
public AuthorizationException(String message) {
|
||||||
|
super(message);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue