]> git.somenet.org - pub/jan/dst18.git/blob - ass2-service/api/src/main/java/dst/ass2/service/api/auth/AuthenticationException.java
Add template for assignment 2
[pub/jan/dst18.git] / ass2-service / api / src / main / java / dst / ass2 / service / api / auth / AuthenticationException.java
1 package dst.ass2.service.api.auth;
2
3 public class AuthenticationException extends Exception {
4     private static final long serialVersionUID = 1L;
5
6     public AuthenticationException() {
7     }
8
9     public AuthenticationException(String message) {
10         super(message);
11     }
12
13     public AuthenticationException(String message, Throwable cause) {
14         super(message, cause);
15     }
16
17     public AuthenticationException(Throwable cause) {
18         super(cause);
19     }
20
21     public AuthenticationException(String message, Throwable cause, boolean enableSuppression, boolean writableStackTrace) {
22         super(message, cause, enableSuppression, writableStackTrace);
23     }
24 }