1 22 package javax.security.auth.message; 23 24 26 import javax.security.auth.login.LoginException ; 27 28 35 public class AuthException extends LoginException  36 { 37 38 private static final long serialVersionUID = -1424234495120552796L; 39 40 44 public AuthException() 45 { 46 super(); 47 } 48 49 55 public AuthException(String msg) 56 { 57 super(msg); 58 } 59 60 } 61 | Popular Tags |