模块  java.naming
软件包  javax.naming

Class AuthenticationException

  • 实现的所有接口
    Serializable

    public class AuthenticationException
    extends NamingSecurityException
    在访问命名或目录服务时发生身份验证错误时抛出此异常。 例如,当用户程序提供的凭据无效或无法向用户验证命名/目录服务时,可能会发生身份验证错误。

    如果程序特别想要处理此异常,则应在尝试捕获NamingException之前显式捕获AuthenticationException。 捕获AuthenticationException后,程序可以通过使用适当的凭据更新已解析的上下文的环境属性来重新尝试身份验证。

    适用于NamingException的同步和序列化问题直接适用于此处。

    从以下版本开始:
    1.3
    另请参见:
    Serialized Form
    • 构造方法详细信息

      • AuthenticationException

        public AuthenticationException​(String explanation)
        使用提供的解释构造一个新的AuthenticationException实例。 所有其他字段默认为null。
        参数
        explanation - 可能为null的字符串,包含有关此异常的其他详细信息。
        另请参见:
        Throwable.getMessage()
      • AuthenticationException

        public AuthenticationException()
        构造一个AuthenticationException的新实例。 所有字段都设置为null。