initial checkin
authorStefan Vogel <sv@exept.de>
Fri, 23 Jul 1999 17:45:13 +0200
changeset 4444 0709daf55558
parent 4443 6928884b4c8a
child 4445 7011a3da6c72
initial checkin
Error.st
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/Error.st	Fri Jul 23 17:45:13 1999 +0200
@@ -0,0 +1,38 @@
+Exception subclass:#Error
+	instanceVariableNames:''
+	classVariableNames:''
+	poolDictionaries:''
+	category:'Kernel-Exceptions'
+!
+
+!Error class methodsFor:'documentation'!
+
+documentation
+"
+    Error ist an abstract superclass of all error exceptions in the system
+
+    [author:]
+        Stefan Vogel
+
+    [see also:]
+        Signal
+"
+! !
+
+!Error class methodsFor:'queries'!
+
+mayProceed
+    "By default, errors do not allow to proceed.
+     Subclasses may change this"
+
+    ^ false
+
+    "Created: / 23.7.1999 / 14:52:26 / stefan"
+    "Modified: / 23.7.1999 / 14:52:39 / stefan"
+! !
+
+!Error class methodsFor:'documentation'!
+
+version
+    ^ '$Header: /cvs/stx/stx/libbasic/Error.st,v 1.1 1999-07-23 15:45:13 stefan Exp $'
+! !