- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- javax.naming.NamingException
-
- javax.naming.InsufficientResourcesException
-
- All Implemented Interfaces:
-
Serializable
public class InsufficientResourcesException extends NamingException
当资源不可用来完成请求的操作时,抛出此异常。 这可能是由于服务器或客户端上缺少资源。 资源类型没有限制,因为不同的服务可能会使用不同的资源。 这种限制可能是由于物理限制和/或行政配额。 有限资源的示例是内部缓冲区,内存,网络带宽。InsufficientResourcesException与LimitExceededException不同,后者是由于用户/系统指定的限制。 有关详细信息,请参阅LimitExceededException。
适用于NamingException的同步和序列化问题直接在这里应用。
- 从以下版本开始:
- 1.3
- 另请参见:
- Serialized Form
-
-
Field Summary
-
Fields inherited from class javax.naming.NamingException
remainingName, resolvedName, resolvedObj, rootException
-
-
构造方法摘要
构造方法 Constructor 描述 InsufficientResourcesException()
构造具有所有名称解析字段的InsufficientResourcesException的新实例,并将解释初始化为null。InsufficientResourcesException(String explanation)
使用说明构造一个新的InsufficientResourcesException实例。
-
方法摘要
-
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
-
-
-
-
构造方法详细信息
-
InsufficientResourcesException
public InsufficientResourcesException(String explanation)
使用说明构造一个新的InsufficientResourcesException实例。 所有其他字段默认为null。- 参数
-
explanation
- 可能是关于此异常的额外详细信息。 - 另请参见:
-
Throwable.getMessage()
-
InsufficientResourcesException
public InsufficientResourcesException()
构造具有所有名称解析字段的InsufficientResourcesException的新实例,并将解释初始化为null。
-
-