1 package ch.odi.jaaspam;
2
3 import javax.security.auth.login.LoginException;
4
5 /**
6 * A PAM module failed to load.
7 *
8 * @author Ortwin Gl?ck
9 */
10 public class PamModuleLoadingException extends LoginException {
11
12 /**
13 *
14 */
15 public PamModuleLoadingException() {
16 super();
17 }
18
19 /**
20 * @param msg
21 */
22 public PamModuleLoadingException(String msg) {
23 super(msg);
24 }
25
26 }