public class AuthenticationException extends SaslException
请注意,缺少AuthenticationException并不意味着失败不是由于身份验证错误。 如果SASL机制实现无法确定故障的性质,或者如果不想披露故障的性质,例如由于安全原因,则SASL机制实现可能会抛出更一般的SaslException而不是AuthenticationException。
| Constructor and Description |
|---|
AuthenticationException()
构造一个新的实例
AuthenticationException 。
|
AuthenticationException(String detail)
构造一个新的实例
AuthenticationException与详细的消息。
|
AuthenticationException(String detail,
Throwable ex)
构造的新实例
AuthenticationException带详细消息和根异常。
|
getCause,
initCause,
toString
addSuppressed,
fillInStackTrace,
getLocalizedMessage,
getMessage, getStackTrace,
getSuppressed, printStackTrace,
printStackTrace,
printStackTrace,
setStackTrace
public AuthenticationException()
AuthenticationException 。
根异常和详细消息为null。
public AuthenticationException(String detail)
AuthenticationException与详细的消息。
根异常为null。
detail - 包含异常详细信息的可能为空的字符串。
Throwable.getMessage()
public AuthenticationException(String detail, Throwable ex)
AuthenticationException ,其中包含详细的消息和根异常。
detail - 包含异常详细信息的可能为空的字符串。
ex - 导致此异常的可能的空根异常。
Throwable.getMessage()
,
SaslException.getCause()