NonIntegerIndexError.st
author Claus Gittinger <cg@exept.de>
Tue, 17 Jun 2003 11:12:22 +0200
changeset 7385 852e84340d2b
parent 6210 d7039e2ae776
child 7586 63e4900c8931
permissions -rw-r--r--
*** empty log message ***

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