class: GenericException
authorClaus Gittinger <cg@exept.de>
Thu, 22 Aug 2013 14:49:27 +0200
changeset 15669 7f38f4a9fd43
parent 15668 d91b53dd8c85
child 15670 9ebb6ecac019
class: GenericException comment/format in: #doCallAction #doCallHandler:
GenericException.st
--- a/GenericException.st	Thu Aug 22 14:33:44 2013 +0200
+++ b/GenericException.st	Thu Aug 22 14:49:27 2013 +0200
@@ -1940,7 +1940,8 @@
 doCallAction
     "call the action proper
      - needed an extra method to have a raise-marked context around
-       ( see implementation of #reject and #proceed)."
+       i.e. do not inline this into #doRaise !! 
+       (see implementation of #reject and #proceed)."
 
     <context: #return>
     <exception: #raise>
@@ -1951,7 +1952,9 @@
 doCallHandler:aHandlerBlock
     "call the handler proper
      - an extra method is needed to have a raise-marked context around.
-       (see implementation of #reject and #proceed)."
+       i.e. do not inline this into #doRaise !! 
+       (see implementation of #reject and #proceed).
+     - also redefinable (see CascadingNotification)"
 
     <context: #return>
     <exception: #raise>
@@ -2354,11 +2357,11 @@
 !GenericException class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libbasic/GenericException.st,v 1.144 2013-08-16 17:55:22 stefan Exp $'
+    ^ '$Header: /cvs/stx/stx/libbasic/GenericException.st,v 1.145 2013-08-22 12:49:27 cg Exp $'
 !
 
 version_CVS
-    ^ '$Header: /cvs/stx/stx/libbasic/GenericException.st,v 1.144 2013-08-16 17:55:22 stefan Exp $'
+    ^ '$Header: /cvs/stx/stx/libbasic/GenericException.st,v 1.145 2013-08-22 12:49:27 cg Exp $'
 ! !