#DOCUMENTATION by stefan
authorStefan Vogel <sv@exept.de>
Fri, 24 Feb 2017 11:55:46 +0100
changeset 21567 94a058b905a5
parent 21566 6155a813c686
child 21568 34def6c3e907
#DOCUMENTATION by stefan class: GenericException comment/format in: #ignoreIn:
GenericException.st
--- a/GenericException.st	Fri Feb 24 11:55:30 2017 +0100
+++ b/GenericException.st	Fri Feb 24 11:55:46 2017 +0100
@@ -1090,19 +1090,20 @@
     "evaluate the argument, aBlock.
      Ignore the receiver-exception during evaluation - i.e. simply continue.
      This makes only sense for some signals, such as UserInterrupt
-     or AbortSignal, because continuing after an exception without any cleanup
+     or AbortOperationRequest, because continuing after an exception without any cleanup
      often leads to followup-errors."
 
     ^ self handle:[:ex | ex proceedWith:nil] do:aBlock.
 
     "
      Object messageNotUnderstoodSignal ignoreIn:[
-	123 size open
+        123 size open
      ]
     "
 
     "Created: / 23-07-1999 / 14:06:40 / stefan"
     "Modified: / 07-12-2006 / 17:05:35 / cg"
+    "Modified (comment): / 24-02-2017 / 11:15:44 / stefan"
 ! !
 
 !GenericException class methodsFor:'testing'!