Module java.naming
Package javax.naming

Class InterruptedNamingException

所有已实现的接口:
Serializable

public class InterruptedNamingException extends NamingException
当调用的命名操作被中断时,将抛出此异常。例如,应用程序可能会中断正在执行搜索的线程。如果搜索支持被中断,它将抛出 InterruptedNamingException。操作是否可中断以及何时可中断取决于其实现(由服务提供者提供)。不同的实现有不同的方式来保护其资源和对象,以免因意外中断而受损。

在此处直接适用于 NamingException 的同步和序列化问题。

自 JDK 版本:
1.3
参见:
  • Constructor Details

    • InterruptedNamingException

      public InterruptedNamingException(String explanation)
      使用问题的解释构造 InterruptedNamingException 的实例。所有与名称解析相关的字段都初始化为 null。
      参数:
      explanation - 可能为 null 的解释问题的消息。
      参见:
    • InterruptedNamingException

      public InterruptedNamingException()
      使用所有名称解析字段和解释初始化为 null 构造 InterruptedNamingException 的实例。