1 7 8 package javax.security.sasl; 9 10 28 public class AuthenticationException extends SaslException { 29 33 public AuthenticationException () { 34 super(); 35 } 36 37 45 public AuthenticationException (String detail) { 46 super(detail); 47 } 48 49 59 public AuthenticationException (String detail, Throwable ex) { 60 super(detail, ex); 61 } 62 63 64 private static final long serialVersionUID = -3579708765071815007L; 65 } 66 | Popular Tags |