- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- javax.naming.NamingException
-
- javax.naming.NamingSecurityException
-
- javax.naming.AuthenticationException
-
- All Implemented Interfaces:
-
Serializable
public class AuthenticationException extends NamingSecurityException
访问命名或目录服务时发生身份验证错误时抛出此异常。 例如,当用户程序提供的凭证无效或以其他方式无法将用户认证到命名/目录服务时,可能会发生身份验证错误。如果程序想特别处理这个异常,那么在尝试捕获NamingException之前,它应该明确地捕获AuthenticationException。 抓取AuthenticationException后,程序可以通过使用适当的凭据更新解析的上下文的环境属性来重新尝试该身份验证。
适用于NamingException的同步和序列化问题直接在这里应用。
- 从以下版本开始:
- 1.3
- 另请参见:
- Serialized Form
-
-
Field Summary
-
Fields inherited from class javax.naming.NamingException
remainingName, resolvedName, resolvedObj, rootException
-
-
构造方法摘要
构造方法 Constructor 描述 AuthenticationException()
构造一个新的AuthenticationException实例。AuthenticationException(String explanation)
使用提供的说明构造一个新的AuthenticationException实例。
-
方法摘要
-
Methods inherited from class javax.naming.NamingException
appendRemainingComponent, appendRemainingName, getCause, getExplanation, getRemainingName, getResolvedName, getResolvedObj, getRootCause, initCause, setRemainingName, setResolvedName, setResolvedObj, setRootCause, toString, toString
-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
-
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, printStackTrace, printStackTrace, printStackTrace, setStackTrace
-
-
-
-
构造方法详细信息
-
AuthenticationException
public AuthenticationException(String explanation)
使用提供的说明构造一个新的AuthenticationException实例。 所有其他字段默认为null。- 参数
-
explanation
- 可能为空字符串,其中包含有关此异常的其他详细信息。 - 另请参见:
-
Throwable.getMessage()
-
AuthenticationException
public AuthenticationException()
构造一个新的AuthenticationException实例。 所有字段都设置为null。
-
-