class: GenericException
authorStefan Vogel <sv@exept.de>
Tue, 11 Mar 2014 10:27:34 +0100
changeset 16248 933761e57891
parent 16247 91197d01d272
child 16249 e341857b7c41
class: GenericException changed: #isResumable same as mayProceed (that cares for nil proceedable instVar)
GenericException.st
--- a/GenericException.st	Tue Mar 11 10:26:45 2014 +0100
+++ b/GenericException.st	Tue Mar 11 10:27:34 2014 +0100
@@ -222,6 +222,7 @@
     self raiseErrorString:messageText
 ! !
 
+
 !GenericException class methodsFor:'accessing'!
 
 errorString
@@ -1271,7 +1272,7 @@
 isResumable
     "return true, if the exception is resumable"
 
-    ^ proceedable
+    ^ self mayProceed
 
     "Modified: / 2.3.1998 / 12:20:43 / stefan"
 !
@@ -2364,11 +2365,11 @@
 !GenericException class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libbasic/GenericException.st,v 1.152 2014-03-05 21:36:23 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libbasic/GenericException.st,v 1.153 2014-03-11 09:27:34 stefan Exp $'
 !
 
 version_CVS
-    ^ '$Header: /cvs/stx/stx/libbasic/GenericException.st,v 1.152 2014-03-05 21:36:23 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libbasic/GenericException.st,v 1.153 2014-03-11 09:27:34 stefan Exp $'
 ! !