#OTHER by cg
authorClaus Gittinger <cg@exept.de>
Tue, 27 Sep 2016 12:51:09 +0200
changeset 20438 d694d6e9b445
parent 20437 f36b7fbeea41
child 20439 a68d67522347
#OTHER by cg changed inheritance to put most programmer's errors under ExecutionError added: #isProgramError query to ask an exception if it is due to a programmer's fault.
NotFoundError.st
--- a/NotFoundError.st	Tue Sep 27 12:51:07 2016 +0200
+++ b/NotFoundError.st	Tue Sep 27 12:51:09 2016 +0200
@@ -11,7 +11,9 @@
 "
 "{ Package: 'stx:libbasic' }"
 
-ProceedableError subclass:#NotFoundError
+"{ NameSpace: Smalltalk }"
+
+ExecutionError subclass:#NotFoundError
 	instanceVariableNames:''
 	classVariableNames:''
 	poolDictionaries:''
@@ -53,7 +55,7 @@
 !NotFoundError class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libbasic/NotFoundError.st,v 1.5 2013-04-27 10:05:48 cg Exp $'
+    ^ '$Header$'
 ! !