#OTHER by cg
authorClaus Gittinger <cg@exept.de>
Tue, 27 Sep 2016 12:51:11 +0200
changeset 20439 a68d67522347
parent 20438 d694d6e9b445
child 20440 3a7637d80751
#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.
ContextError.st
--- a/ContextError.st	Tue Sep 27 12:51:09 2016 +0200
+++ b/ContextError.st	Tue Sep 27 12:51:11 2016 +0200
@@ -11,7 +11,9 @@
 "
 "{ Package: 'stx:libbasic' }"
 
-ProceedableError subclass:#ContextError
+"{ NameSpace: Smalltalk }"
+
+ExecutionError subclass:#ContextError
 	instanceVariableNames:'context'
 	classVariableNames:''
 	poolDictionaries:''
@@ -43,6 +45,6 @@
 !ContextError class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libbasic/ContextError.st,v 1.5 2013-12-24 10:39:33 cg Exp $'
+    ^ '$Header$'
 ! !