NonIntegerIndexError.st
changeset 15180 33a5420b968d
parent 7586 63e4900c8931
child 18057 8da7c39a6322
child 20440 3a7637d80751
--- a/NonIntegerIndexError.st	Fri Apr 26 16:11:10 2013 +0200
+++ b/NonIntegerIndexError.st	Sat Apr 27 12:04:41 2013 +0200
@@ -9,7 +9,6 @@
  other person.  No title to or ownership of the software is
  hereby transferred.
 "
-
 "{ Package: 'stx:libbasic' }"
 
 IndexNotFoundError subclass:#NonIntegerIndexError
@@ -42,8 +41,21 @@
 "
 ! !
 
+!NonIntegerIndexError class methodsFor:'initialization'!
+
+initialize
+    NotifierString := 'index must be integer'.
+
+    "
+     self initialize
+    "
+! !
+
 !NonIntegerIndexError class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libbasic/NonIntegerIndexError.st,v 1.3 2003-08-29 19:15:18 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libbasic/NonIntegerIndexError.st,v 1.4 2013-04-27 10:04:41 cg Exp $'
 ! !
+
+
+NonIntegerIndexError initialize!