- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- java.io.IOException
-
- com.sun.tools.attach.AttachOperationFailedException
-
- All Implemented Interfaces:
-
Serializable
public class AttachOperationFailedException extends IOException
异常类型表示目标虚拟机中附着操作失败。当目标虚拟机中的操作失败时,可以通过
VirtualMachine
的各种操作抛出此异常。 如果有通信错误,将抛出常规IOException。- 从以下版本开始:
- 9
- 另请参见:
- Serialized Form
-
-
构造方法摘要
构造方法 Constructor 描述 AttachOperationFailedException(String message)
构造具有指定详细消息的AttachOperationFailedException
。
-
方法摘要
-
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
-
-
-
-
构造方法详细信息
-
AttachOperationFailedException
public AttachOperationFailedException(String message)
构造具有指定详细消息的AttachOperationFailedException
。- 参数
-
message
- the detail message.
-
-