IndexNotFoundError.st
changeset 6210 d7039e2ae776
parent 5975 25a24298a177
child 7586 63e4900c8931
equal deleted inserted replaced
6209:c314246cb2a5 6210:d7039e2ae776
     2 
     2 
     3 NotFoundError subclass:#IndexNotFoundError
     3 NotFoundError subclass:#IndexNotFoundError
     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 !IndexNotFoundError class methodsFor:'documentation'!
       
    11 
       
    12 documentation
       
    13 "
       
    14     raised when a bad index/key is used when accessing a collection.
       
    15 "
       
    16 ! !
    10 
    17 
    11 !IndexNotFoundError class methodsFor:'documentation'!
    18 !IndexNotFoundError class methodsFor:'documentation'!
    12 
    19 
    13 version
    20 version
    14     ^ '$Header: /cvs/stx/stx/libbasic/IndexNotFoundError.st,v 1.1 2001-09-07 10:37:00 cg Exp $'
    21     ^ '$Header: /cvs/stx/stx/libbasic/IndexNotFoundError.st,v 1.2 2001-11-17 10:04:18 cg Exp $'
    15 ! !
    22 ! !