- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- java.util.concurrent.TimeoutException
-
- All Implemented Interfaces:
-
Serializable
public class TimeoutException extends 异常
阻塞操作超时时抛出异常。 指定超时的阻止操作需要一种表示超时发生的方法。 对于许多这样的操作,可以返回一个指示超时的值; 当不可能或不可取的时候,应该声明并抛出TimeoutException
。- 从以下版本开始:
- 1.5
- 另请参见:
- Serialized Form
-
-
构造方法摘要
构造方法 Constructor 描述 TimeoutException()
构造一个没有指定详细消息的TimeoutException
。TimeoutException(String message)
构造具有指定详细消息的TimeoutException
。
-
方法摘要
-
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, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
-
-
-
构造方法详细信息
-
TimeoutException
public TimeoutException()
构造一个TimeoutException
,没有指定的详细信息。
-
TimeoutException
public TimeoutException(String message)
构造具有指定详细消息的TimeoutException
。- 参数
-
message
- 详细信息
-
-