SubscriptOutOfBoundsError.st
author Claus Gittinger <cg@exept.de>
Mon, 04 Feb 2002 15:31:14 +0100
changeset 6376 6a3ce5694cc9
parent 6210 d7039e2ae776
child 7232 1d05a293b8b0
permissions -rw-r--r--
*** empty log message ***

"{ Package: 'stx:libbasic' }"

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

!SubscriptOutOfBoundsError class methodsFor:'documentation'!

documentation
"
    raised when the index was ouf of a collections valid range for the index
    (i.e. array index too high or less than 1)
"
! !

!SubscriptOutOfBoundsError class methodsFor:'documentation'!

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