Update of /cvsroot/javaprofiler/jpi/net/sourceforge/javaprofiler/jpi
In directory usw-pr-cvs1:/tmp/cvs-serv2600
Added Files:
VMDisconnectedException.java
Log Message:
Exception thrown when VM is unexpectedly disconnected.
--- NEW FILE: VMDisconnectedException.java ---
/*
* Sun Public License Notice
*
* The contents of this file are subject to the Sun Public License Version
* 1.0 (the "License"). You may not use this file except in compliance with
* the License. A copy of the License is available at http://www.sun.com/
*
* The Original Code is the Java Profiler module.
* The Initial Developers of the Original Code are Jan Stola, Pavel Vacha,
* Michal Pise, Petr Luner, Lukas Petru and Marek Przeczek.
* Portions created by Jan Stola are Copyright (C) 2000-2001. All Rights Reserved.
* Portions created by Pavel Vacha are Copyright (C) 2000-2001. All Rights Reserved.
* Portions created by Michal Pise are Copyright (C) 2000-2001. All Rights Reserved.
* Portions created by Petr Luner are Copyright (C) 2000-2001. All Rights Reserved.
* Portions created by Lukas Petru are Copyright (C) 2000-2001. All Rights Reserved.
* Portions created by Marek Przeczek are Copyright (C) 2000-2001. All Rights Reserved.
*
* Contributors: Jan Stola, Pavel Vacha, Michal Pise, Petr Luner,
* Lukas Petru and Marek Przeczek.
*/
package net.sourceforge.javaprofiler.jpi;
/**
* Unchecked exception thrown to indicate that the requested operation cannot
* be completed because there is no longer a connection to the target VM.
*
* @author Jan Stola
*/
public class VMDisconnectedException extends RuntimeException {
/**
* Creates new VMDisconnectedException.
*/
public VMDisconnectedException() {
super();
}
/**
* Creates new VMDisconnectedException.
*
* @param msg message describing the occured problem.
*/
public VMDisconnectedException(String msg) {
super(msg);
}
}
/*
* $Log: VMDisconnectedException.java,v $
* Revision 1.1 2002/07/02 20:10:07 stolis
* Exception thrown when VM is unexpectedly disconnected.
*
*/
|