class: GenericException
authorClaus Gittinger <cg@exept.de>
Tue, 30 Dec 2014 13:40:23 +0100
changeset 17270 f0c93e2cb389
parent 17269 a59c3c048aef
child 17271 47341245c458
class: GenericException comment/format in: #defaultResumeValue
GenericException.st
--- a/GenericException.st	Tue Dec 30 13:40:05 2014 +0100
+++ b/GenericException.st	Tue Dec 30 13:40:23 2014 +0100
@@ -11,6 +11,8 @@
 "
 "{ Package: 'stx:libbasic' }"
 
+"{ NameSpace: Smalltalk }"
+
 Object subclass:#GenericException
 	instanceVariableNames:'signal parameter messageText suspendedContext raiseContext
 		handlerContext rejected originator proceedable'
@@ -1511,6 +1513,8 @@
 !GenericException methodsFor:'default values'!
 
 defaultResumeValue
+    "the default answer, if no one handles the query and the exception is resumed"
+
     ^ nil
 !
 
@@ -2374,11 +2378,11 @@
 !GenericException class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libbasic/GenericException.st,v 1.158 2014-11-21 14:51:11 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libbasic/GenericException.st,v 1.159 2014-12-30 12:40:23 cg Exp $'
 !
 
 version_CVS
-    ^ '$Header: /cvs/stx/stx/libbasic/GenericException.st,v 1.158 2014-11-21 14:51:11 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libbasic/GenericException.st,v 1.159 2014-12-30 12:40:23 cg Exp $'
 ! !