TimeoutError.st
changeset 8483 3e76a8fe740a
parent 7586 63e4900c8931
child 17711 39faaaf888b4
child 20265 264c329000a5
--- a/TimeoutError.st	Sun Aug 22 18:41:24 2004 +0200
+++ b/TimeoutError.st	Sun Aug 22 19:47:38 2004 +0200
@@ -12,7 +12,7 @@
 
 "{ Package: 'stx:libbasic' }"
 
-Error subclass:#TimeoutError
+ProceedableError subclass:#TimeoutError
 	instanceVariableNames:''
 	classVariableNames:''
 	poolDictionaries:''
@@ -37,7 +37,7 @@
 
 documentation
 "
-    TimeoutError may be raised, when a timeout on some operation occures.
+    TimeoutError may be raised, when a timeout on some operation occurs.
     It is recommended to perform the operation in a while-loop, and to raise the
     exception proceedable, in order to retry the operation or wait
     by proceeding the exception.
@@ -64,20 +64,10 @@
 
 ! !
 
-!TimeoutError class methodsFor:'queries'!
-
-mayProceed
-
-    ^ true
-
-
-
-! !
-
 !TimeoutError class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libbasic/TimeoutError.st,v 1.4 2003-08-29 19:15:07 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libbasic/TimeoutError.st,v 1.5 2004-08-22 17:47:07 stefan Exp $'
 ! !
 
 TimeoutError initialize!