Update of /cvsroot/javaprofiler/interface/net/sourceforge/javaprofiler/jpi/connect
In directory usw-pr-cvs1:/tmp/cvs-serv21802
Modified Files:
ConnectingException.java
Log Message:
Added constructor with String parameter.
Index: ConnectingException.java
===================================================================
RCS file: /cvsroot/javaprofiler/interface/net/sourceforge/javaprofiler/jpi/connect/ConnectingException.java,v
retrieving revision 1.2
retrieving revision 1.3
diff -C2 -r1.2 -r1.3
*** ConnectingException.java 2001/09/29 20:55:06 1.2
--- ConnectingException.java 2001/10/14 21:50:41 1.3
***************
*** 24,34 ****
* Thrown to indicate an exception during connecting to a VM.
*
! * @author Michal Pise
*/
public class ConnectingException extends Exception {
}
/*
* $Log$
* Revision 1.2 2001/09/29 20:55:06 stolis
* Plural added in licenses.
--- 24,47 ----
* Thrown to indicate an exception during connecting to a VM.
*
! * @author Michal Pise, Jan Stola
*/
public class ConnectingException extends Exception {
+
+ /**
+ * Creates new <code>ConnectingException</code>.
+ *
+ * @param msg message describing encountered problem.
+ */
+ public ConnectingException(String msg) {
+ super(msg);
+ }
+
}
/*
* $Log$
+ * Revision 1.3 2001/10/14 21:50:41 stolis
+ * Added constructor with String parameter.
+ *
* Revision 1.2 2001/09/29 20:55:06 stolis
* Plural added in licenses.
|