mirror of
https://github.com/apache/cloudstack.git
synced 2025-11-03 04:12:31 +01:00
15 lines
417 B
Java
15 lines
417 B
Java
public class AuthenticationException extends Exception {
|
|
private static final long serialVersionUID = -393139302884898842L;
|
|
public AuthenticationException() {
|
|
super();
|
|
}
|
|
public AuthenticationException(String s) {
|
|
super(s);
|
|
}
|
|
public AuthenticationException(String message, Throwable cause) {
|
|
super(message, cause);
|
|
}
|
|
public AuthenticationException(Throwable cause) {
|
|
super(cause);
|
|
}
|
|
} |