src/share/classes/com/sun/tools/attach/AttachNotSupportedException.java

Print this page




  19  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
  20  *
  21  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  22  * or visit www.oracle.com if you need additional information or have any
  23  * questions.
  24  */
  25 
  26 package com.sun.tools.attach;
  27 
  28 import com.sun.tools.attach.spi.AttachProvider;         // for javadoc
  29 
  30 /**
  31  * Thrown by {@link com.sun.tools.attach.VirtualMachine#attach
  32  * VirtalMachine.attach} when attempting to attach to a Java virtual machine
  33  * for which a compatible {@link com.sun.tools.attach.spi.AttachProvider
  34  * AttachProvider} does not exist. It is also thrown by {@link
  35  * com.sun.tools.attach.spi.AttachProvider#attachVirtualMachine
  36  * AttachProvider.attachVirtualMachine} if the provider attempts to
  37  * attach to a Java virtual machine with which it not comptatible.
  38  */

  39 public class AttachNotSupportedException extends Exception {
  40 
  41     /** use serialVersionUID for interoperability */
  42     static final long serialVersionUID = 3391824968260177264L;
  43 
  44     /**
  45      * Constructs an <code>AttachNotSupportedException</code> with
  46      * no detail message.
  47      */
  48     public AttachNotSupportedException() {
  49         super();
  50 
  51     }
  52 
  53     /**
  54      * Constructs an <code>AttachNotSupportedException</code> with
  55      * the specified detail message.
  56      *
  57      * @param   s   the detail message.
  58      */


  19  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
  20  *
  21  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  22  * or visit www.oracle.com if you need additional information or have any
  23  * questions.
  24  */
  25 
  26 package com.sun.tools.attach;
  27 
  28 import com.sun.tools.attach.spi.AttachProvider;         // for javadoc
  29 
  30 /**
  31  * Thrown by {@link com.sun.tools.attach.VirtualMachine#attach
  32  * VirtalMachine.attach} when attempting to attach to a Java virtual machine
  33  * for which a compatible {@link com.sun.tools.attach.spi.AttachProvider
  34  * AttachProvider} does not exist. It is also thrown by {@link
  35  * com.sun.tools.attach.spi.AttachProvider#attachVirtualMachine
  36  * AttachProvider.attachVirtualMachine} if the provider attempts to
  37  * attach to a Java virtual machine with which it not comptatible.
  38  */
  39 @jdk.Supported
  40 public class AttachNotSupportedException extends Exception {
  41 
  42     /** use serialVersionUID for interoperability */
  43     static final long serialVersionUID = 3391824968260177264L;
  44 
  45     /**
  46      * Constructs an <code>AttachNotSupportedException</code> with
  47      * no detail message.
  48      */
  49     public AttachNotSupportedException() {
  50         super();
  51 
  52     }
  53 
  54     /**
  55      * Constructs an <code>AttachNotSupportedException</code> with
  56      * the specified detail message.
  57      *
  58      * @param   s   the detail message.
  59      */