- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- javax.naming.NamingException
-
- javax.naming.NamingSecurityException
-
- javax.naming.AuthenticationNotSupportedException
-
- All Implemented Interfaces:
-
Serializable
public class AuthenticationNotSupportedException extends NamingSecurityException
当不支持所请求的身份验证的特定风格时,会抛出此异常。 例如,如果程序尝试使用强身份验证,但目录/命名仅支持简单身份验证,则会抛出此异常。 识别身份验证的特定风格是提供者和服务器特定的。 可以使用诸如使用SASL识别的特定认证方案或通用认证说明符(诸如“简单”和“强”)来指定它。如果程序想要特别处理这个异常,那么在尝试捕获NamingException之前,它应该明确地捕获AuthenticationNotSupportedException。 捕获
AuthenticationNotSupportedException
,程序可以通过相应地更新解析的上下文的环境属性来重新尝试使用不同身份验证的身份验证。适用于NamingException的同步和序列化问题直接在这里应用。
- 从以下版本开始:
- 1.3
- 另请参见:
- Serialized Form
-
-
Field Summary
-
Fields inherited from class javax.naming.NamingException
remainingName, resolvedName, resolvedObj, rootException
-
-
构造方法摘要
构造方法 Constructor 描述 AuthenticationNotSupportedException()
构造一个具有所有名称解析字段的AuthenticationNotSupportedException的新实例,并将说明初始化为null。AuthenticationNotSupportedException(String explanation)
使用说明构造一个新的AuthenticationNotSupportedException实例。
-
方法摘要
-
Methods inherited from class javax.naming.NamingException
appendRemainingComponent, appendRemainingName, getCause, getExplanation, getRemainingName, getResolvedName, getResolvedObj, getRootCause, initCause, setRemainingName, setResolvedName, setResolvedObj, setRootCause, toString, toString
-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
-
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, printStackTrace, printStackTrace, printStackTrace, setStackTrace
-
-
-
-
构造方法详细信息
-
AuthenticationNotSupportedException
public AuthenticationNotSupportedException(String explanation)
使用说明构造一个新的AuthenticationNotSupportedException实例。 所有其他字段默认为null。- 参数
-
explanation
- 可能为空字符串,其中包含有关此异常的其他详细信息。 - 另请参见:
-
Throwable.getMessage()
-
AuthenticationNotSupportedException
public AuthenticationNotSupportedException()
构造一个具有所有名称解析字段的AuthenticationNotSupportedException的新实例,并将说明初始化为null。
-
-