- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- javax.naming.NamingException
-
- javax.naming.NotContextException
-
- All Implemented Interfaces:
-
Serializable
public class NotContextException extends NamingException
当命名操作进行到需要上下文以继续操作的点时抛出此异常,但解析的对象不是上下文。 例如,Context.destroy()要求将命名对象作为上下文。 如果不是,则抛出NotContextException。 另一个例子是在Context方法的解析阶段遇到的非上下文。当需要上下文的特定子类型时,也会抛出它,例如DirContext,并且已解析的对象是上下文,但不是必需的子类型。
适用于NamingException的同步和序列化问题直接在这里应用。
- 从以下版本开始:
- 1.3
- 另请参见:
-
Context.destroySubcontext(javax.naming.Name)
, Serialized Form
-
-
Field Summary
-
Fields inherited from class javax.naming.NamingException
remainingName, resolvedName, resolvedObj, rootException
-
-
构造方法摘要
构造方法 Constructor 描述 NotContextException()
构造一个新的NotContextException实例。NotContextException(String explanation)
使用解释构造一个新的NotContextException实例。
-
方法摘要
-
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
-
-
-
-
构造方法详细信息
-
NotContextException
public NotContextException(String explanation)
使用解释构造一个新的NotContextException实例。 所有其他字段默认为null。- 参数
-
explanation
- 可能是关于此异常的额外详细信息。 - 另请参见:
-
Throwable.getMessage()
-
NotContextException
public NotContextException()
构造一个新的NotContextException实例。 所有字段默认为null。
-
-