NonIntegerIndexError.st
author Stefan Vogel <sv@exept.de>
Fri, 09 May 2003 18:11:22 +0200
changeset 7280 7afcccb7c856
parent 6210 d7039e2ae776
child 7586 63e4900c8931
permissions -rw-r--r--
Fix pidgin spelling: 'does not exists' and 'not exists'

"{ Package: 'stx:libbasic' }"

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

!NonIntegerIndexError class methodsFor:'documentation'!

documentation
"
    raised when a non-integer index is used when accessing an 
    arrayed collection.
"
! !

!NonIntegerIndexError class methodsFor:'documentation'!

version
    ^ '$Header: /cvs/stx/stx/libbasic/NonIntegerIndexError.st,v 1.2 2001-11-17 10:03:48 cg Exp $'
! !