模块  java.naming
软件包  javax.naming

Class AuthenticationNotSupportedException

  • 实现的所有接口
    Serializable

    public class AuthenticationNotSupportedException
    extends NamingSecurityException
    如果不支持所请求的特定身份验证,则抛出此异常。 例如,如果程序尝试使用强身份验证但目录/命名仅支持简单身份验证,则会抛出此异常。 识别特定的身份验证风格是提供者和服务器特定的。 可以使用特定的认证方案来指定,例如使用SASL识别的认证方案,或通用认证说明符(例如“简单”和“强”)。

    如果程序特别想要处理此异常,则应在尝试捕获NamingException之前显式捕获AuthenticationNotSupportedException。 在捕获AuthenticationNotSupportedException ,程序可以通过相应地更新已解析的上下文的环境属性,使用不同的身份验证风格重新尝试身份验证。

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

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

      • AuthenticationNotSupportedException

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

        public AuthenticationNotSupportedException()
        构造一个AuthenticationNotSupportedException的新实例,其中所有名称解析字段和解释都初始化为null。