ProceedableError.st
changeset 4528 5ef0de6abb50
child 4554 db264efac2c0
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/ProceedableError.st	Wed Aug 04 16:13:40 1999 +0200
@@ -0,0 +1,46 @@
+Error subclass:#ProceedableError
+	instanceVariableNames:''
+	classVariableNames:''
+	poolDictionaries:''
+	category:'Kernel-Exceptions'
+!
+
+!ProceedableError class methodsFor:'documentation'!
+
+documentation
+"
+     This is a child of Error, which can proceed.
+     Proceedable errors may be implemeneted as subclass of
+     ProceedableError.
+"
+
+
+
+! !
+
+!ProceedableError class methodsFor:'initialization'!
+
+initialize
+
+    NotifierString := 'signal error'.
+
+    "
+     self initialize
+    "
+
+
+! !
+
+!ProceedableError class methodsFor:'queries'!
+
+mayProceed
+
+    ^ true
+! !
+
+!ProceedableError class methodsFor:'documentation'!
+
+version
+    ^ '$Header: /cvs/stx/stx/libbasic/ProceedableError.st,v 1.1 1999-08-04 14:12:32 stefan Exp $'
+! !
+ProceedableError initialize!