1 package ch.odi.jaaspam; 2 3 import javax.security.auth.login.LoginException; 4 5 /** 6 * Signals failure to access the authentication information. This may be a temporary problem 7 * or a misconfiguration. 8 * 9 * @author Ortwin Gl?ck 10 */ 11 public class AuthInfoUnavailableException extends LoginException { 12 13 /** 14 * 15 */ 16 public AuthInfoUnavailableException() { 17 super(); 18 } 19 20 /** 21 * @param msg 22 */ 23 public AuthInfoUnavailableException(String msg) { 24 super(msg); 25 } 26 27 }