1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-07-23 17:05:26 +02:00

more message in CDIException.toSTring()

This commit is contained in:
Alain Magloire 2004-10-15 18:35:16 +00:00
parent 907262fe19
commit 9551479479

View file

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