Add description methods
authorStefan Vogel <sv@exept.de>
Fri, 03 Sep 2004 13:30:56 +0200
changeset 8513 aa129fd0e35e
parent 8512 ca94f3bfcb9c
child 8514 9e18649ad0c9
Add description methods
InvalidReadError.st
InvalidWriteError.st
StreamNotOpenError.st
--- a/InvalidReadError.st	Fri Sep 03 13:30:10 2004 +0200
+++ b/InvalidReadError.st	Fri Sep 03 13:30:56 2004 +0200
@@ -1,5 +1,3 @@
-"{ Encoding: utf8 }"
-
 "{ Package: 'stx:libbasic' }"
 
 ReadError subclass:#InvalidReadError
@@ -10,8 +8,14 @@
 !
 
 
+!InvalidReadError methodsFor:'printing & storing'!
+
+description
+    ^ super description, ': ', parameter classNameWithArticle
+! !
+
 !InvalidReadError class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libbasic/InvalidReadError.st,v 1.1 2004-03-04 16:49:33 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libbasic/InvalidReadError.st,v 1.2 2004-09-03 11:30:47 stefan Exp $'
 ! !
--- a/InvalidWriteError.st	Fri Sep 03 13:30:10 2004 +0200
+++ b/InvalidWriteError.st	Fri Sep 03 13:30:56 2004 +0200
@@ -1,5 +1,3 @@
-"{ Encoding: utf8 }"
-
 "{ Package: 'stx:libbasic' }"
 
 WriteError subclass:#InvalidWriteError
@@ -10,8 +8,14 @@
 !
 
 
+!InvalidWriteError methodsFor:'printing & storing'!
+
+description
+    ^ super description, ': ', parameter classNameWithArticle
+! !
+
 !InvalidWriteError class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libbasic/InvalidWriteError.st,v 1.1 2004-03-04 16:49:55 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libbasic/InvalidWriteError.st,v 1.2 2004-09-03 11:30:51 stefan Exp $'
 ! !
--- a/StreamNotOpenError.st	Fri Sep 03 13:30:10 2004 +0200
+++ b/StreamNotOpenError.st	Fri Sep 03 13:30:56 2004 +0200
@@ -1,5 +1,3 @@
-"{ Encoding: utf8 }"
-
 "{ Package: 'stx:libbasic' }"
 
 StreamError subclass:#StreamNotOpenError
@@ -10,8 +8,14 @@
 !
 
 
+!StreamNotOpenError methodsFor:'printing & storing'!
+
+description
+    ^ super description, ': ', parameter classNameWithArticle
+! !
+
 !StreamNotOpenError class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libbasic/StreamNotOpenError.st,v 1.1 2004-03-04 16:49:23 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libbasic/StreamNotOpenError.st,v 1.2 2004-09-03 11:30:56 stefan Exp $'
 ! !