JavaTM 2 Platform
Standard Ed. 6

javax.naming
类 AuthenticationException

java.lang.Object
  继承者 java.lang.Throwable
      继承者 java.lang.Exception
          继承者 javax.naming.NamingException
              继承者 javax.naming.NamingSecurityException
                  继承者 javax.naming.AuthenticationException
所有已实现的接口:
Serializable

public class AuthenticationException
extends NamingSecurityException

当访问命名或目录服务发生验证错误时,抛出此异常。验证错误可能在(举例来说)用户程序提供的证书无效或者其他原因导致对需要命名/目录服务的用户进行验证失败时发生。

如果程序想要单独处理此异常,它应该在试图捕获 NamingException 之前显式捕获 AuthenticationException。在捕获 AuthenticationException 之后,通过使用适当的证书更新已解析上下文的环境属性,该程序可以重新尝试进行验证。

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

从以下版本开始:
1.3
另请参见:
序列化表格

字段摘要
 
从类 javax.naming.NamingException 继承的字段
remainingName, resolvedName, resolvedObj, rootException
 
构造方法摘要
AuthenticationException()
          构造一个新的 AuthenticationException 实例。
AuthenticationException(String explanation)
          使用所提供的解释构造一个新的 AuthenticationException 实例。
 
方法摘要
 
从类 javax.naming.NamingException 继承的方法
appendRemainingComponent, appendRemainingName, getCause, getExplanation, getRemainingName, getResolvedName, getResolvedObj, getRootCause, initCause, setRemainingName, setResolvedName, setResolvedObj, setRootCause, toString, toString
 
从类 java.lang.Throwable 继承的方法
fillInStackTrace, getLocalizedMessage, getMessage, getStackTrace, printStackTrace, printStackTrace, printStackTrace, setStackTrace
 
从类 java.lang.Object 继承的方法
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

构造方法详细信息

AuthenticationException

public AuthenticationException(String explanation)
使用所提供的解释构造一个新的 AuthenticationException 实例。其他所有字段默认为 null。

参数:
explanation - 一个可能为 null 的字符串,包含有关此异常的附加详细信息。
另请参见:
Throwable.getMessage()

AuthenticationException

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


JavaTM 2 Platform
Standard Ed. 6

提交错误或意见

版权所有 2008 Sun Microsystems, Inc. 保留所有权利。请遵守GNU General Public License, version 2 only