- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- com.sun.tools.attach.AttachNotSupportedException
-
- 实现的所有接口
-
Serializable
public class AttachNotSupportedException extends 异常
尝试连接到不存在兼容AttachProvider
的Java虚拟机时,由VirtualMachine.attach
抛出。 它是由也扔AttachProvider.attachVirtualMachine
如果提供程序试图连接到与它没有comptatible Java虚拟机。- 另请参见:
- Serialized Form
-
-
构造方法摘要
构造方法 构造器 描述 AttachNotSupportedException()
构造一个没有详细消息的AttachNotSupportedException
。AttachNotSupportedException(String s)
使用指定的详细消息构造一个AttachNotSupportedException
。
-
方法摘要
-
-
-
构造方法详细信息
-
AttachNotSupportedException
public AttachNotSupportedException()
构造一个没有详细消息的AttachNotSupportedException
。
-
AttachNotSupportedException
public AttachNotSupportedException(String s)
使用指定的详细消息构造一个AttachNotSupportedException
。- 参数
-
s
- 详细信息。
-
-