- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- javax.naming.NamingException
-
- javax.naming.LimitExceededException
-
- javax.naming.TimeLimitExceededException
-
- All Implemented Interfaces:
-
Serializable
public class TimeLimitExceededException extends LimitExceededException
当方法不在指定的时间限制内终止时,抛出此异常。 这可能发生,例如,如果用户指定该方法不应超过10秒,并且该方法在10秒内无法完成。适用于NamingException的同步和序列化问题直接在这里应用。
- 从以下版本开始:
- 1.3
- 另请参见:
- Serialized Form
-
-
Field Summary
-
Fields inherited from class javax.naming.NamingException
remainingName, resolvedName, resolvedObj, rootException
-
-
构造方法摘要
构造方法 Constructor 描述 TimeLimitExceededException()
构造一个新的TimeLimitExceededException实例。TimeLimitExceededException(String explanation)
使用提供的参数构造一个新的TimeLimitExceededException实例。
-
方法摘要
-
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
-
-
-
-
构造方法详细信息
-
TimeLimitExceededException
public TimeLimitExceededException()
构造一个新的TimeLimitExceededException实例。 所有字段默认为null。
-
TimeLimitExceededException
public TimeLimitExceededException(String explanation)
使用提供的参数构造一个新的TimeLimitExceededException实例。- 参数
-
explanation
- 可能是有关此异常的详细信息。 - 另请参见:
-
Throwable.getMessage()
-
-