#OTHER by exept
authorClaus Gittinger <cg@exept.de>
Sun, 05 Jan 2020 17:13:40 +0100
changeset 25173 9ef97d4ba8ea
parent 25172 985406251ac3
child 25174 c9950591b619
#OTHER by exept added: #initialize
StreamNotOpenError.st
--- a/StreamNotOpenError.st	Sun Jan 05 17:13:38 2020 +0100
+++ b/StreamNotOpenError.st	Sun Jan 05 17:13:40 2020 +0100
@@ -36,6 +36,12 @@
 "
 ! !
 
+!StreamNotOpenError class methodsFor:'initialization'!
+
+initialize
+    NotifierString := 'stream is not open'.
+! !
+
 !StreamNotOpenError methodsFor:'printing & storing'!
 
 description
@@ -53,3 +59,5 @@
     ^ '$Header$'
 ! !
 
+
+StreamNotOpenError initialize!