class: Autoload
authorClaus Gittinger <cg@exept.de>
Thu, 13 Feb 2014 19:43:02 +0100
changeset 16026 08d949e6f7af
parent 16025 f8583a01459e
child 16027 8108da3eeb14
class: Autoload added: #handle:do: must also be cought, in case an autoloaded Exception class is used.
Autoload.st
--- a/Autoload.st	Thu Feb 13 15:53:36 2014 +0100
+++ b/Autoload.st	Thu Feb 13 19:43:02 2014 +0100
@@ -584,6 +584,10 @@
     ^ self doesNotUnderstand:(Message selector:#fromString: argument:aString)
 !
 
+handle:handler do:aBlock
+    ^ self doesNotUnderstand:(Message selector:#handle:do: with:handler with:aBlock)
+!
+
 isAbstract
     ^ false "/ actually: dont know, but do not want to load my class for this query
 !
@@ -818,11 +822,11 @@
 !Autoload class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libbasic/Autoload.st,v 1.167 2013-10-15 14:04:12 stefan Exp $'
+    ^ '$Header: /cvs/stx/stx/libbasic/Autoload.st,v 1.168 2014-02-13 18:43:02 cg Exp $'
 !
 
 version_CVS
-    ^ '$Header: /cvs/stx/stx/libbasic/Autoload.st,v 1.167 2013-10-15 14:04:12 stefan Exp $'
+    ^ '$Header: /cvs/stx/stx/libbasic/Autoload.st,v 1.168 2014-02-13 18:43:02 cg Exp $'
 ! !