1 package ch.odi.jaaspam; 2 3 import javax.security.auth.login.LoginException; 4 5 /** 6 * The user is not permitted to gain access at this time. 7 * 8 * @author Ortwin Gl?ck 9 */ 10 public class PermissionDeniedException extends LoginException { 11 12 /** 13 * 14 */ 15 public PermissionDeniedException() { 16 super(); 17 } 18 19 /** 20 * @param msg 21 */ 22 public PermissionDeniedException(String msg) { 23 super(msg); 24 } 25 26 }