Module  java.naming
软件包  javax.naming

Class AuthenticationException

  • All Implemented Interfaces:
    Serializable


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

    如果程序想特别处理这个异常,那么在尝试捕获NamingException之前,它应该明确地捕获AuthenticationException。 抓取AuthenticationException后,程序可以通过使用适当的凭据更新解析的上下文的环境属性来重新尝试该身份验证。

    适用于NamingException的同步和序列化问题直接在这里应用。

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

      • AuthenticationException

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

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