- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- javax.naming.NamingException
-
- javax.naming.NamingSecurityException
-
- javax.naming.AuthenticationNotSupportedException
-
- 实现的所有接口
-
Serializable
public class AuthenticationNotSupportedException extends NamingSecurityException
如果不支持所请求的特定身份验证,则抛出此异常。 例如,如果程序尝试使用强身份验证但目录/命名仅支持简单身份验证,则会抛出此异常。 识别特定的身份验证风格是提供者和服务器特定的。 可以使用特定的认证方案来指定,例如使用SASL识别的认证方案,或通用认证说明符(例如“简单”和“强”)。如果程序特别想要处理此异常,则应在尝试捕获NamingException之前显式捕获AuthenticationNotSupportedException。 在捕获
AuthenticationNotSupportedException
,程序可以通过相应地更新已解析的上下文的环境属性,使用不同的身份验证风格重新尝试身份验证。适用于NamingException的同步和序列化问题直接适用于此处。
- 从以下版本开始:
- 1.3
- 另请参见:
- Serialized Form
-
-
字段汇总
-
声明的属性在类 javax.naming.NamingException
remainingName, resolvedName, resolvedObj, rootException
-
-
构造方法摘要
构造方法 构造器 描述 AuthenticationNotSupportedException()
构造一个AuthenticationNotSupportedException的新实例,其中所有名称解析字段和解释都初始化为null。AuthenticationNotSupportedException(String explanation)
使用说明构造AuthenticationNotSupportedException的新实例。
-
方法摘要
-
声明方法的类 javax.naming.NamingException
appendRemainingComponent, appendRemainingName, getCause, getExplanation, getRemainingName, getResolvedName, getResolvedObj, getRootCause, initCause, setRemainingName, setResolvedName, setResolvedObj, setRootCause, toString, toString
-
-
-
-
构造方法详细信息
-
AuthenticationNotSupportedException
public AuthenticationNotSupportedException(String explanation)
使用说明构造AuthenticationNotSupportedException的新实例。 所有其他字段默认为null。- 参数
-
explanation
- 可能为null的字符串,包含有关此异常的其他详细信息。 - 另请参见:
-
Throwable.getMessage()
-
AuthenticationNotSupportedException
public AuthenticationNotSupportedException()
构造一个AuthenticationNotSupportedException的新实例,其中所有名称解析字段和解释都初始化为null。
-
-