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() + "]"; + } + }