Package com.sun.tools.attach
Class AttachNotSupportedException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- com.sun.tools.attach.AttachNotSupportedException
-
- All Implemented Interfaces:
java.io.Serializable
public final class AttachNotSupportedException extends java.lang.ExceptionThrown byVirtalMachine.attachwhen attempting to attach to a Java virtual machine for which a compatibleAttachProviderdoes not exist. It is also thrown byAttachProvider.attachVirtualMachineif the provider attempts to attach to a Java virtual machine with which it not compatible.- See Also:
- Serialized Form
-
-
Field Summary
Fields Modifier and Type Field Description private static longserialVersionUID
-
Constructor Summary
Constructors Constructor Description AttachNotSupportedException()Constructs anAttachNotSupportedExceptionwith no detail message.AttachNotSupportedException(java.lang.String s)Constructs anAttachNotSupportedExceptionwith the specified detail message.
-
-
-
Field Detail
-
serialVersionUID
private static final long serialVersionUID
- See Also:
- Constant Field Values
-
-
Constructor Detail
-
AttachNotSupportedException
public AttachNotSupportedException()
Constructs anAttachNotSupportedExceptionwith no detail message.
-
AttachNotSupportedException
public AttachNotSupportedException(java.lang.String s)
Constructs anAttachNotSupportedExceptionwith the specified detail message.- Parameters:
s- the detail message.
-
-