changed superclass to Error.
authorClaus Gittinger <cg@exept.de>
Fri, 30 Sep 2005 15:37:54 +0200
changeset 8949 e43390dadfd7
parent 8948 cb0bc2c3d0c6
child 8950 3d5ecf6e2fc3
changed superclass to Error. (to be cought by an Exception handler)
NoHandlerError.st
RecursiveExceptionError.st
--- a/NoHandlerError.st	Thu Sep 29 10:16:22 2005 +0200
+++ b/NoHandlerError.st	Fri Sep 30 15:37:54 2005 +0200
@@ -14,7 +14,7 @@
 
 "{ Package: 'stx:libbasic' }"
 
-GenericException subclass:#NoHandlerError
+Error subclass:#NoHandlerError
 	instanceVariableNames:''
 	classVariableNames:'EmergencyHandler'
 	poolDictionaries:''
@@ -546,7 +546,7 @@
 !NoHandlerError class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libbasic/NoHandlerError.st,v 1.11 2005-01-13 12:36:36 stefan Exp $'
+    ^ '$Header: /cvs/stx/stx/libbasic/NoHandlerError.st,v 1.12 2005-09-30 13:37:52 cg Exp $'
 ! !
 
 NoHandlerError initialize!
--- a/RecursiveExceptionError.st	Thu Sep 29 10:16:22 2005 +0200
+++ b/RecursiveExceptionError.st	Fri Sep 30 15:37:54 2005 +0200
@@ -14,7 +14,7 @@
 
 "{ Package: 'stx:libbasic' }"
 
-GenericException subclass:#RecursiveExceptionError
+Error subclass:#RecursiveExceptionError
 	instanceVariableNames:''
 	classVariableNames:''
 	poolDictionaries:''
@@ -75,7 +75,7 @@
 !RecursiveExceptionError class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libbasic/RecursiveExceptionError.st,v 1.4 2003-08-29 19:14:57 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libbasic/RecursiveExceptionError.st,v 1.5 2005-09-30 13:37:54 cg Exp $'
 ! !
 
 RecursiveExceptionError initialize!