IndexNotFoundError.st
author penk
Mon, 10 Feb 2003 17:39:23 +0100
changeset 7019 6591ea303fbd
parent 6210 d7039e2ae776
child 7586 63e4900c8931
permissions -rw-r--r--
*** empty log message ***

"{ Package: 'stx:libbasic' }"

NotFoundError subclass:#IndexNotFoundError
	instanceVariableNames:''
	classVariableNames:''
	poolDictionaries:''
	category:'Kernel-Exceptions-Errors'
!

!IndexNotFoundError class methodsFor:'documentation'!

documentation
"
    raised when a bad index/key is used when accessing a collection.
"
! !

!IndexNotFoundError class methodsFor:'documentation'!

version
    ^ '$Header: /cvs/stx/stx/libbasic/IndexNotFoundError.st,v 1.2 2001-11-17 10:04:18 cg Exp $'
! !