Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAlain Magloire2004-10-15 18:35:16 +0000
committerAlain Magloire2004-10-15 18:35:16 +0000
commit9551479479218feaff500fbf639d52b9f5c3e220 (patch)
tree0b1df13320a296d9d3c2c375d5cfa1bc07f8bdcf
parent907262fe199624c82e4ec58cb91ff27bab2224ed (diff)
downloadorg.eclipse.cdt-9551479479218feaff500fbf639d52b9f5c3e220.tar.gz
org.eclipse.cdt-9551479479218feaff500fbf639d52b9f5c3e220.tar.xz
org.eclipse.cdt-9551479479218feaff500fbf639d52b9f5c3e220.zip
more message in CDIException.toSTring()
-rw-r--r--debug/org.eclipse.cdt.debug.core/cdi/org/eclipse/cdt/debug/core/cdi/CDIException.java7
1 files changed, 7 insertions, 0 deletions
diff --git a/debug/org.eclipse.cdt.debug.core/cdi/org/eclipse/cdt/debug/core/cdi/CDIException.java b/debug/org.eclipse.cdt.debug.core/cdi/org/eclipse/cdt/debug/core/cdi/CDIException.java
index c1aba725afd..7579295408e 100644
--- a/debug/org.eclipse.cdt.debug.core/cdi/org/eclipse/cdt/debug/core/cdi/CDIException.java
+++ b/debug/org.eclipse.cdt.debug.core/cdi/org/eclipse/cdt/debug/core/cdi/CDIException.java
@@ -41,4 +41,11 @@ public class CDIException extends Exception {
return details;
}
+ /* (non-Javadoc)
+ * @see java.lang.Object#toString()
+ */
+ public String toString() {
+ return super.toString() + "["+ getDetailMessage() + "]";
+ }
+
}

Back to the top