NotFoundError.st
changeset 15181 bd22e5577a0d
parent 8483 3e76a8fe740a
child 18057 8da7c39a6322
child 20438 d694d6e9b445
--- a/NotFoundError.st	Sat Apr 27 12:04:41 2013 +0200
+++ b/NotFoundError.st	Sat Apr 27 12:05:48 2013 +0200
@@ -9,7 +9,6 @@
  other person.  No title to or ownership of the software is
  hereby transferred.
 "
-
 "{ Package: 'stx:libbasic' }"
 
 ProceedableError subclass:#NotFoundError
@@ -41,8 +40,21 @@
 "
 ! !
 
+!NotFoundError class methodsFor:'initialization'!
+
+initialize
+    NotifierString := 'no such element'.
+
+    "
+     self initialize
+    "
+! !
+
 !NotFoundError class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libbasic/NotFoundError.st,v 1.4 2004-08-22 17:47:38 stefan Exp $'
+    ^ '$Header: /cvs/stx/stx/libbasic/NotFoundError.st,v 1.5 2013-04-27 10:05:48 cg Exp $'
 ! !
+
+
+NotFoundError initialize!