SignalError.st
changeset 4528 5ef0de6abb50
child 4531 31d96b7ba351
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/SignalError.st	Wed Aug 04 16:13:40 1999 +0200
@@ -0,0 +1,28 @@
+Error subclass:#SignalError
+	instanceVariableNames:''
+	classVariableNames:''
+	poolDictionaries:''
+	category:'Kernel-Exceptions'
+!
+
+!SignalError class methodsFor:'documentation'!
+
+documentation
+"
+    Parent of all exception signaling errors like WrongProceedabilityError
+    and ProceedError
+"
+! !
+
+!SignalError class methodsFor:'queries'!
+
+mayProceed
+
+    ^ true
+! !
+
+!SignalError class methodsFor:'documentation'!
+
+version
+    ^ '$Header: /cvs/stx/stx/libbasic/SignalError.st,v 1.1 1999-08-04 14:13:40 stefan Exp $'
+! !