got rid of the \"unhandled...(\" prefix in the debugger;
authorClaus Gittinger <cg@exept.de>
Sun, 19 Oct 2008 20:44:33 +0200
changeset 11234 65c3be6b0d72
parent 11233 4c35e5414ddf
child 11235 48c4b0d76bad
got rid of the \"unhandled...(\" prefix in the debugger; only print the exceptions description proper
GenericException.st
--- a/GenericException.st	Sun Oct 19 20:44:30 2008 +0200
+++ b/GenericException.st	Sun Oct 19 20:44:33 2008 +0200
@@ -1247,7 +1247,7 @@
      (i.e. an outer handler can find out, if any other handler has already
      rejected).
      Currently only used to change the 'unhandled-exception' messageText
-     into 'rejected-exception' for information).
+     into 'rejected-exception' for the information, that there was a handler which rejected.
     "
 
     ^ rejected == true
@@ -1751,6 +1751,13 @@
     "Modified: / 12.3.1998 / 15:13:28 / stefan"
 !
 
+descriptionForDebugger
+    "return the description string of the signal which is used in the 
+     debugger title area"
+
+    ^ self description.
+!
+
 printOn:aStream
     aStream nextPutAll:self description
 ! !
@@ -2041,7 +2048,7 @@
 !GenericException class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libbasic/GenericException.st,v 1.111 2008-05-27 16:40:53 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libbasic/GenericException.st,v 1.112 2008-10-19 18:44:33 cg Exp $'
 ! !
 
 GenericException initialize!