- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- java.io.IOException
-
- com.sun.jdi.connect.TransportTimeoutException
-
- All Implemented Interfaces:
-
Serializable
public class TransportTimeoutException extends IOException
当附加到目标虚拟机或等待接受来自目标虚拟机的连接时,可能会抛出此异常。当连接到目标虚拟机时,使用
attach
,如果连接器支持超时connector argument
,则可能会抛出此异常。 类似地,当等待接受来自目标虚拟机的连接时,如果连接器在接受时支持超时连接器参数,则使用accept
可能会抛出此异常。此外,开发人员创建
TransportService
个实现这个异常被抛出时attach
次建立到目标VM,或者连接时出accept
个超时等待目标VM连接。- 从以下版本开始:
- 1.5
- 另请参见:
-
AttachingConnector.attach(java.util.Map<java.lang.String, ? extends com.sun.jdi.connect.Connector.Argument>)
,ListeningConnector.accept(java.util.Map<java.lang.String, ? extends com.sun.jdi.connect.Connector.Argument>)
,TransportService.attach(java.lang.String, long, long)
,TransportService.accept(com.sun.jdi.connect.spi.TransportService.ListenKey, long, long)
, Serialized Form
-
-
构造方法摘要
构造方法 Constructor 描述 TransportTimeoutException()
构造一个没有详细消息的TransportTimeoutException
。TransportTimeoutException(String message)
构造具有指定详细消息的TransportTimeoutException
。
-
方法摘要
-
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
-
-
-
-
构造方法详细信息
-
TransportTimeoutException
public TransportTimeoutException()
构造一个TransportTimeoutException
,没有详细消息。
-
TransportTimeoutException
public TransportTimeoutException(String message)
构造具有指定详细消息的TransportTimeoutException
。- 参数
-
message
- 有关此异常的详细消息。
-
-