View Javadoc

1   package ch.odi.jaaspam;
2   
3   import javax.security.auth.login.LoginException;
4   
5   /**
6    * The credentials provided by the application were not sufficient to authenticate the user.
7    *
8    * @author Ortwin Gl?ck
9    */
10  public class CredentialsInsufficientException extends LoginException {
11  
12      /**
13       * 
14       */
15      public CredentialsInsufficientException() {
16          super();
17      }
18  
19      /**
20       * @param msg
21       */
22      public CredentialsInsufficientException(String msg) {
23          super(msg);
24      }
25  
26  }