SubscriptOutOfBoundsError.st
author Stefan Vogel <sv@exept.de>
Fri, 11 Apr 2003 18:47:17 +0200
changeset 7205 903fef64420c
parent 6210 d7039e2ae776
child 7232 1d05a293b8b0
permissions -rw-r--r--
#errorSignal -> #description

"{ 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 $'
! !