< prev index next >

src/jdk.jdi/share/classes/com/sun/jdi/VMDisconnectedException.java

Print this page
rev 17275 : 8181417: Code cleanups in com.sun.jdi


  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.jdi;
  27 
  28 /**
  29  * Unchecked exception thrown to indicate that the
  30  * requested operation cannot be
  31  * completed because there is no longer a connection to the target VM.
  32  *
  33  * @author Robert Field
  34  * @since  1.3
  35  */
  36 public class VMDisconnectedException extends RuntimeException {
  37 
  38     private static final long serialVersionUID = 2892975269768351637L;

  39     public VMDisconnectedException() {
  40         super();
  41     }
  42     public VMDisconnectedException(String message) {
  43         super(message);
  44     }
  45 }


  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.jdi;
  27 
  28 /**
  29  * Unchecked exception thrown to indicate that the
  30  * requested operation cannot be
  31  * completed because there is no longer a connection to the target VM.
  32  *
  33  * @author Robert Field
  34  * @since  1.3
  35  */
  36 public class VMDisconnectedException extends RuntimeException {
  37 
  38     private static final long serialVersionUID = 2892975269768351637L;
  39 
  40     public VMDisconnectedException() {
  41         super();
  42     }
  43     public VMDisconnectedException(String message) {
  44         super(message);
  45     }
  46 }
< prev index next >