Do not implement #isStreamError and #isOpenError.
authorStefan Vogel <sv@exept.de>
Wed, 01 Sep 2004 18:33:02 +0200
changeset 8509 b62464d549f5
parent 8508 68cd95545196
child 8510 af60b80bf50e
Do not implement #isStreamError and #isOpenError.
GenericException.st
OpenError.st
StreamError.st
--- a/GenericException.st	Wed Sep 01 16:45:23 2004 +0200
+++ b/GenericException.st	Wed Sep 01 18:33:02 2004 +0200
@@ -2290,20 +2290,12 @@
     ^ true
 
     "Created: / 17.11.2001 / 18:37:27 / cg"
-!
-
-isOpenError
-    ^ false
-!
-
-isStreamError
-    ^ false
 ! !
 
 !GenericException class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libbasic/GenericException.st,v 1.90 2004-08-22 17:59:44 stefan Exp $'
+    ^ '$Header: /cvs/stx/stx/libbasic/GenericException.st,v 1.91 2004-09-01 16:32:37 stefan Exp $'
 ! !
 
 GenericException initialize!
--- a/OpenError.st	Wed Sep 01 16:45:23 2004 +0200
+++ b/OpenError.st	Wed Sep 01 18:33:02 2004 +0200
@@ -22,14 +22,8 @@
     ^ parameter
 ! !
 
-!OpenError methodsFor:'testing'!
-
-isOpenError
-    ^ true
-! !
-
 !OpenError class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libbasic/OpenError.st,v 1.2 2004-04-01 12:29:55 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libbasic/OpenError.st,v 1.3 2004-09-01 16:32:53 stefan Exp $'
 ! !
--- a/StreamError.st	Wed Sep 01 16:45:23 2004 +0200
+++ b/StreamError.st	Wed Sep 01 18:33:02 2004 +0200
@@ -1,5 +1,3 @@
-"{ Encoding: utf8 }"
-
 "
  COPYRIGHT (c) 2001 by eXept Software AG
               All Rights Reserved
@@ -43,14 +41,8 @@
 "
 ! !
 
-!StreamError methodsFor:'testing'!
-
-isStreamError
-    ^ true
-! !
-
 !StreamError class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libbasic/StreamError.st,v 1.5 2004-03-04 16:39:02 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libbasic/StreamError.st,v 1.6 2004-09-01 16:33:02 stefan Exp $'
 ! !