author | erikj |
Tue, 12 Sep 2017 19:03:39 +0200 | |
changeset 47216 | 71c04702a3d5 |
parent 46896 | jdk/src/jdk.attach/share/classes/com/sun/tools/attach/AttachNotSupportedException.java@161d696f4ff4 |
permissions | -rw-r--r-- |
2 | 1 |
/* |
46896
161d696f4ff4
8168677: Typo in API docs for com.sun.tools.attach
hseigel
parents:
34894
diff
changeset
|
2 |
* Copyright (c) 2005, 2017, Oracle and/or its affiliates. All rights reserved. |
2 | 3 |
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. |
4 |
* |
|
5 |
* This code is free software; you can redistribute it and/or modify it |
|
6 |
* under the terms of the GNU General Public License version 2 only, as |
|
5506 | 7 |
* published by the Free Software Foundation. Oracle designates this |
2 | 8 |
* particular file as subject to the "Classpath" exception as provided |
5506 | 9 |
* by Oracle in the LICENSE file that accompanied this code. |
2 | 10 |
* |
11 |
* This code is distributed in the hope that it will be useful, but WITHOUT |
|
12 |
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or |
|
13 |
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License |
|
14 |
* version 2 for more details (a copy is included in the LICENSE file that |
|
15 |
* accompanied this code). |
|
16 |
* |
|
17 |
* You should have received a copy of the GNU General Public License version |
|
18 |
* 2 along with this work; if not, write to the Free Software Foundation, |
|
19 |
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. |
|
20 |
* |
|
5506 | 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. |
|
2 | 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 |
|
46896
161d696f4ff4
8168677: Typo in API docs for com.sun.tools.attach
hseigel
parents:
34894
diff
changeset
|
32 |
* VirtualMachine.attach} when attempting to attach to a Java virtual machine |
2 | 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 |
*/ |
|
59 |
public AttachNotSupportedException(String s) { |
|
60 |
super(s); |
|
61 |
} |
|
62 |
||
63 |
} |