- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- javax.naming.NamingException
-
- javax.naming.InterruptedNamingException
-
- All Implemented Interfaces:
-
Serializable
public class InterruptedNamingException extends NamingException
正在调用的命名操作已被中断时抛出此异常。 例如,应用程序可能会中断执行搜索的线程。 如果搜索支持被中断,它将抛出InterruptedNamingException。 一个操作是否可中断,何时取决于其实现(由服务提供商提供)。 不同的实现方式有不同的方式来保护资源和对象不被意外中断所损坏。适用于NamingException的同步和序列化问题直接在这里应用。
- 从以下版本开始:
- 1.3
- 另请参见:
-
Context
,DirContext
,Thread.interrupt()
,InterruptedException
, Serialized Form
-
-
Field Summary
-
Fields inherited from class javax.naming.NamingException
remainingName, resolvedName, resolvedObj, rootException
-
-
构造方法摘要
构造方法 Constructor 描述 InterruptedNamingException()
构造一个具有所有名称解析字段的InterruptedNamingException实例,并将解释初始化为null。InterruptedNamingException(String explanation)
使用问题的解释构造InterruptedNamingException的实例。
-
方法摘要
-
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
-
-
-
-
构造方法详细信息
-
InterruptedNamingException
public InterruptedNamingException(String explanation)
使用问题的解释构造InterruptedNamingException的实例。 所有名称解析相关的字段被初始化为null。- 参数
-
explanation
- 解释问题的可能的空消息。 - 另请参见:
-
Throwable.getMessage()
-
InterruptedNamingException
public InterruptedNamingException()
构造一个具有所有名称解析字段的InterruptedNamingException实例,并将解释初始化为null。
-
-