View Javadoc

1   package ch.odi.justblog.api;
2   
3   /***
4    * Signals that authentication failed. 
5    *
6    * @author oglueck
7    */
8   public class AuthenticationFailedException extends ApiException {
9   
10      /***
11       * 
12       */
13      public AuthenticationFailedException() {
14          super("Authentication failed");
15      }
16  
17      /***
18       * @param arg0
19       */
20      public AuthenticationFailedException(String arg0) {
21          super(arg0);
22      }
23  
24      /***
25       * @param arg0
26       */
27      public AuthenticationFailedException(Throwable arg0) {
28          super(arg0.getMessage(), arg0);
29      }
30  
31      /***
32       * @param arg0
33       * @param arg1
34       */
35      public AuthenticationFailedException(String arg0, Throwable arg1) {
36          super(arg0, arg1);
37      }
38  
39  }