View Javadoc

1   package ch.odi.jaaspam;
2   
3   import javax.security.auth.login.LoginException;
4   
5   /**
6    * One or more of the authentication modules has reached its limit of tries authenticating
7    * the user. Do not try again.
8    *
9    * @author Ortwin Gl?ck
10   */
11  public class MaxRetriesException extends LoginException {
12  
13      /**
14       * 
15       */
16      public MaxRetriesException() {
17          super();
18      }
19  
20      /**
21       * @param msg
22       */
23      public MaxRetriesException(String msg) {
24          super(msg);
25      }
26  
27  }