Constructors Summary |
---|
public AuthenticationException()Constructs an authentication exception either for serialization
or for the default credential-based exception.
super();
|
public AuthenticationException(String rsn)Constructs an authentication exception having the specified
message. The authentication type is credential.
super(rsn);
|
public AuthenticationException(String rsn, short t)Constructs an authentication exception having the specified
message. The authentication type is as specified.
super(rsn);
type = t;
|
public AuthenticationException(Exception cse)Constructs a system-based authentication exception caused
by the specified exception.
super(cse.getMessage());
type = SYSTEM;
|
public AuthenticationException(String reason, Exception cse)Constructs a system-based authentication exception caused by
the specified exception.
super(reason);
type = SYSTEM;
|