From 9551479479218feaff500fbf639d52b9f5c3e220 Mon Sep 17 00:00:00 2001 From: Alain Magloire Date: Fri, 15 Oct 2004 18:35:16 +0000 Subject: [PATCH] more message in CDIException.toSTring() --- .../cdi/org/eclipse/cdt/debug/core/cdi/CDIException.java | 7 +++++++ 1 file changed, 7 insertions(+) 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() + "]"; + } + }