ProceedableError.st
changeset 13134 cd4c67e33492
parent 7586 63e4900c8931
child 18011 deb0c3355881
child 21773 8a75e8d54327
--- a/ProceedableError.st	Wed Nov 17 17:53:31 2010 +0100
+++ b/ProceedableError.st	Wed Nov 17 17:53:49 2010 +0100
@@ -9,9 +9,6 @@
  other person.  No title to or ownership of the software is
  hereby transferred.
 "
-
-
-
 "{ Package: 'stx:libbasic' }"
 
 Error subclass:#ProceedableError
@@ -53,27 +50,31 @@
 !ProceedableError class methodsFor:'initialization'!
 
 initialize
-
     NotifierString := 'proceedable error'.
 
     "
      self initialize
     "
 
-
+    "Modified: / 17-11-2010 / 17:53:04 / cg"
 ! !
 
 !ProceedableError class methodsFor:'queries'!
 
 mayProceed
+    ^ true
 
-    ^ true
+    "Modified: / 17-11-2010 / 17:53:37 / cg"
 ! !
 
 !ProceedableError class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libbasic/ProceedableError.st,v 1.5 2003-08-29 19:15:09 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libbasic/ProceedableError.st,v 1.6 2010-11-17 16:53:49 cg Exp $'
+!
+
+version_CVS
+    ^ '$Header: /cvs/stx/stx/libbasic/ProceedableError.st,v 1.6 2010-11-17 16:53:49 cg Exp $'
 ! !
 
 ProceedableError initialize!