java.lang.Object
java.lang.Throwable
java.lang.Exception
javax.naming.NamingException
javax.naming.LimitExceededException
- 所有已实现的接口:
-
Serializable
当方法由于用户或系统指定的限制而异常终止时,将抛出此异常。这与InsufficientResourceException不同,LimitExceededException是由于用户/系统指定的限制。例如,耗尽内存以完成请求将是资源不足。客户端请求10个答案,但返回了11个是大小限制异常。
这些限制的示例包括客户端和服务器配置限制,如大小、时间、跳数等。
适用于NamingException的同步和序列化问题直接适用于此处。
- 自从:
- 1.3
- 参见:
-
Field Summary
Fields declared in class javax.naming.NamingException
remainingName, resolvedName, resolvedObj, rootException
-
Constructor Summary
ConstructorDescription使用所有名称解析字段和解释初始化为null构造LimitExceededException的新实例。LimitExceededException
(String explanation) 使用解释构造LimitExceededException的新实例。 -
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
-
LimitExceededException
public LimitExceededException()使用所有名称解析字段和解释初始化为null构造LimitExceededException的新实例。 -
LimitExceededException
使用解释构造LimitExceededException的新实例。所有其他字段默认为null。- 参数:
-
explanation
- 关于此异常的可能为null的详细信息。 - 参见:
-