NonIntegerIndexError.st
branchjv
changeset 18057 8da7c39a6322
parent 17911 a99f15c5efa5
parent 15180 33a5420b968d
child 20578 39641ba8d6e0
--- a/NonIntegerIndexError.st	Fri Apr 26 18:03:27 2013 +0100
+++ b/NonIntegerIndexError.st	Mon Apr 29 19:43:44 2013 +0100
@@ -12,10 +12,10 @@
 "{ Package: 'stx:libbasic' }"
 
 IndexNotFoundError subclass:#NonIntegerIndexError
-	instanceVariableNames:''
-	classVariableNames:''
-	poolDictionaries:''
-	category:'Kernel-Exceptions-Errors'
+    instanceVariableNames: ''
+    classVariableNames: ''
+    poolDictionaries: ''
+    category: 'Kernel-Exceptions-Errors'
 !
 
 !NonIntegerIndexError class methodsFor:'documentation'!
@@ -41,10 +41,22 @@
 "
 ! !
 
+
+!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 $'
 !
 
 version_SVN
@@ -52,4 +64,4 @@
 ! !
 
 
-
+NonIntegerIndexError initialize!