java.lang.Object
java.lang.Throwable
java.lang.Exception
javax.naming.NamingException
javax.naming.InsufficientResourcesException
- 所有已实现的接口:
-
Serializable
当资源不足以完成请求的操作时,将抛出此异常。这可能是由于服务器或客户端上资源不足造成的。对于资源类型没有限制,因为不同的服务可能使用不同的资源。此类限制可能是由于物理限制和/或管理配额。有限资源的示例包括内部缓冲区、内存、网络带宽。
InsufficientResourcesException与LimitExceededException不同,后者是由用户/系统指定的限制引起的。有关详细信息,请参阅LimitExceededException。
适用于NamingException的同步和序列化问题在此直接适用。
- 自 JDK 版本:
- 1.3
- 参见:
-
Field Summary
Fields declared in class javax.naming.NamingException
remainingName, resolvedName, resolvedObj, rootException
-
Constructor Summary
ConstructorDescription使用所有名称解析字段和解释初始化为 null 构造 InsufficientResourcesException 的新实例。InsufficientResourcesException
(String explanation) 使用解释构造 InsufficientResourcesException 的新实例。 -
Method Summary
Methods declared in class javax.naming.NamingException
appendRemainingComponent, appendRemainingName, getCause, getExplanation, getRemainingName, getResolvedName, getResolvedObj, getRootCause, initCause, setRemainingName, setResolvedName, setResolvedObj, setRootCause, toString, toString
Methods declared in class java.lang.Throwable
addSuppressed, fillInStackTrace, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, printStackTrace, printStackTrace, printStackTrace, setStackTrace
-
Constructor Details
-
InsufficientResourcesException
使用解释构造 InsufficientResourcesException 的新实例。所有其他字段默认为 null。- 参数:
-
explanation
- 关于此异常的可能为 null 的额外详细信息。 - 参见:
-
InsufficientResourcesException
public InsufficientResourcesException()使用所有名称解析字段和解释初始化为 null 构造 InsufficientResourcesException 的新实例。
-