Module  java.naming
软件包  javax.naming

Class AuthenticationNotSupportedException

  • All Implemented Interfaces:
    Serializable


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

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

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

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

      • AuthenticationNotSupportedException

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

        public AuthenticationNotSupportedException​()
        构造一个具有所有名称解析字段的AuthenticationNotSupportedException的新实例,并将说明初始化为null。