StreamIOError.st
changeset 25170 534d55127523
parent 8728 d70396dc4e96
--- a/StreamIOError.st	Sun Jan 05 17:09:44 2020 +0100
+++ b/StreamIOError.st	Sun Jan 05 17:13:34 2020 +0100
@@ -9,8 +9,9 @@
  other person.  No title to or ownership of the software is
  hereby transferred.
 "
+"{ Package: 'stx:libbasic' }"
 
-"{ Package: 'stx:libbasic' }"
+"{ NameSpace: Smalltalk }"
 
 StreamError subclass:#StreamIOError
 	instanceVariableNames:''
@@ -35,8 +36,17 @@
 "
 ! !
 
+!StreamIOError class methodsFor:'initialization'!
+
+initialize
+    NotifierString := 'I/O error'.
+! !
+
 !StreamIOError class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libbasic/StreamIOError.st,v 1.2 2005-02-02 11:03:44 cg Exp $'
+    ^ '$Header$'
 ! !
+
+
+StreamIOError initialize!