NonIntegerIndexError.st
changeset 6210 d7039e2ae776
parent 5975 25a24298a177
child 7586 63e4900c8931
equal deleted inserted replaced
6209:c314246cb2a5 6210:d7039e2ae776
     2 
     2 
     3 IndexNotFoundError subclass:#NonIntegerIndexError
     3 IndexNotFoundError subclass:#NonIntegerIndexError
     4 	instanceVariableNames:''
     4 	instanceVariableNames:''
     5 	classVariableNames:''
     5 	classVariableNames:''
     6 	poolDictionaries:''
     6 	poolDictionaries:''
     7 	category:'Kernel-Exceptions'
     7 	category:'Kernel-Exceptions-Errors'
     8 !
     8 !
     9 
     9 
       
    10 !NonIntegerIndexError class methodsFor:'documentation'!
       
    11 
       
    12 documentation
       
    13 "
       
    14     raised when a non-integer index is used when accessing an 
       
    15     arrayed collection.
       
    16 "
       
    17 ! !
    10 
    18 
    11 !NonIntegerIndexError class methodsFor:'documentation'!
    19 !NonIntegerIndexError class methodsFor:'documentation'!
    12 
    20 
    13 version
    21 version
    14     ^ '$Header: /cvs/stx/stx/libbasic/NonIntegerIndexError.st,v 1.1 2001-09-07 10:36:28 cg Exp $'
    22     ^ '$Header: /cvs/stx/stx/libbasic/NonIntegerIndexError.st,v 1.2 2001-11-17 10:03:48 cg Exp $'
    15 ! !
    23 ! !