PositionableStream.st
changeset 8320 229adaeaf183
parent 8318 6fd12ab774c0
child 8363 a7644643904e
--- a/PositionableStream.st	Wed Apr 21 14:04:09 2004 +0200
+++ b/PositionableStream.st	Wed Apr 21 16:11:42 2004 +0200
@@ -123,7 +123,7 @@
      invalid position (i.e. before the begin of the stream or after
      the end)"
 
-    ^ InvalidPositionErrorSignal
+    ^ PositionOutOfBoundsError
 ! !
 
 !PositionableStream class methodsFor:'constants'!
@@ -1016,7 +1016,7 @@
     "report an error when positioning past the end
      or before the beginning."
 
-    ^ InvalidPositionErrorSignal raiseRequestWith:nil
+    ^ PositionOutOfBoundsError raiseRequestWith:nil
 
     "Modified: / 26.7.1999 / 10:59:13 / stefan"
 !
@@ -1027,7 +1027,7 @@
     "report an error when positioning past the end
      or before the beginning."
 
-    ^ InvalidPositionErrorSignal raiseRequestWith:badPostition
+    ^ PositionOutOfBoundsError raiseRequestWith:badPostition
 !
 
 with:aCollection
@@ -1118,7 +1118,7 @@
 !PositionableStream class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libbasic/PositionableStream.st,v 1.139 2004-04-15 13:44:11 stefan Exp $'
+    ^ '$Header: /cvs/stx/stx/libbasic/PositionableStream.st,v 1.140 2004-04-21 14:11:42 stefan Exp $'
 ! !
 
 PositionableStream initialize!