class: IndexNotFoundError
authorClaus Gittinger <cg@exept.de>
Sat, 27 Apr 2013 12:06:42 +0200
changeset 15182 ddb7fa253e3a
parent 15181 bd22e5577a0d
child 15183 ce9307fd8983
class: IndexNotFoundError added: #initialize
IndexNotFoundError.st
--- a/IndexNotFoundError.st	Sat Apr 27 12:05:48 2013 +0200
+++ b/IndexNotFoundError.st	Sat Apr 27 12:06:42 2013 +0200
@@ -9,7 +9,6 @@
  other person.  No title to or ownership of the software is
  hereby transferred.
 "
-
 "{ Package: 'stx:libbasic' }"
 
 NotFoundError subclass:#IndexNotFoundError
@@ -41,8 +40,21 @@
 "
 ! !
 
+!IndexNotFoundError class methodsFor:'initialization'!
+
+initialize
+    NotifierString := 'bad index: '.
+
+    "
+     self initialize
+    "
+! !
+
 !IndexNotFoundError class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libbasic/IndexNotFoundError.st,v 1.3 2003-08-29 19:14:40 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libbasic/IndexNotFoundError.st,v 1.4 2013-04-27 10:06:42 cg Exp $'
 ! !
+
+
+IndexNotFoundError initialize!