mirror of
https://github.com/apache/cloudstack.git
synced 2025-10-26 08:42:29 +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);
|
|
}
|
|
} |