GenericException.st
changeset 16224 2194bc886b30
parent 16190 05ae6b8316b7
child 16248 933761e57891
--- a/GenericException.st	Wed Mar 05 22:35:35 2014 +0100
+++ b/GenericException.st	Wed Mar 05 22:36:23 2014 +0100
@@ -222,7 +222,6 @@
     self raiseErrorString:messageText
 ! !
 
-
 !GenericException class methodsFor:'accessing'!
 
 errorString
@@ -1167,6 +1166,9 @@
 !GenericException methodsFor:'Compatibility-V''Age'!
 
 exitWith:value
+    "return with a value.
+     V'AGE compatibility."
+
     ^ self return:value
 
     "Created: / 28-08-2010 / 14:43:23 / cg"
@@ -1510,7 +1512,7 @@
 !GenericException methodsFor:'handler actions'!
 
 exit
-    "either resume or return - depending on the receivers resumability.
+    "either resume or return - depending on the receiver's resumability.
      VW compatibility."
 
     self isResumable ifTrue:[
@@ -1523,7 +1525,7 @@
 !
 
 exit:value
-    "either resume or return - depending on the receivers resumability.
+    "either resume or return - depending on the receiver's resumability.
      VW compatibility."
 
     self isResumable ifTrue:[
@@ -2362,11 +2364,11 @@
 !GenericException class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libbasic/GenericException.st,v 1.151 2014-03-02 00:17:12 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libbasic/GenericException.st,v 1.152 2014-03-05 21:36:23 cg Exp $'
 !
 
 version_CVS
-    ^ '$Header: /cvs/stx/stx/libbasic/GenericException.st,v 1.151 2014-03-02 00:17:12 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libbasic/GenericException.st,v 1.152 2014-03-05 21:36:23 cg Exp $'
 ! !