SubscriptOutOfBoundsError.st
author Stefan Vogel <sv@exept.de>
Fri, 11 Jul 2003 19:52:44 +0200
changeset 7493 5c67c45b11cb
parent 7232 1d05a293b8b0
child 7586 63e4900c8931
permissions -rw-r--r--
New select for fair scheduling (not giving low filedescriptors precedence)
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
5975
25a24298a177 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
     1
"{ Package: 'stx:libbasic' }"
25a24298a177 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
     2
25a24298a177 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
     3
IndexNotFoundError subclass:#SubscriptOutOfBoundsError
25a24298a177 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
     4
	instanceVariableNames:''
25a24298a177 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
     5
	classVariableNames:''
25a24298a177 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
     6
	poolDictionaries:''
6210
d7039e2ae776 caetgory change and documentation added
Claus Gittinger <cg@exept.de>
parents: 5975
diff changeset
     7
	category:'Kernel-Exceptions-Errors'
5975
25a24298a177 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
     8
!
25a24298a177 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
     9
6210
d7039e2ae776 caetgory change and documentation added
Claus Gittinger <cg@exept.de>
parents: 5975
diff changeset
    10
!SubscriptOutOfBoundsError class methodsFor:'documentation'!
d7039e2ae776 caetgory change and documentation added
Claus Gittinger <cg@exept.de>
parents: 5975
diff changeset
    11
d7039e2ae776 caetgory change and documentation added
Claus Gittinger <cg@exept.de>
parents: 5975
diff changeset
    12
documentation
d7039e2ae776 caetgory change and documentation added
Claus Gittinger <cg@exept.de>
parents: 5975
diff changeset
    13
"
7232
1d05a293b8b0 comments
Claus Gittinger <cg@exept.de>
parents: 6210
diff changeset
    14
    Raised when the index was ouf of a collections valid range for the index
6210
d7039e2ae776 caetgory change and documentation added
Claus Gittinger <cg@exept.de>
parents: 5975
diff changeset
    15
    (i.e. array index too high or less than 1)
d7039e2ae776 caetgory change and documentation added
Claus Gittinger <cg@exept.de>
parents: 5975
diff changeset
    16
"
d7039e2ae776 caetgory change and documentation added
Claus Gittinger <cg@exept.de>
parents: 5975
diff changeset
    17
! !
5975
25a24298a177 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    18
25a24298a177 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    19
!SubscriptOutOfBoundsError class methodsFor:'documentation'!
25a24298a177 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    20
25a24298a177 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    21
version
7232
1d05a293b8b0 comments
Claus Gittinger <cg@exept.de>
parents: 6210
diff changeset
    22
    ^ '$Header: /cvs/stx/stx/libbasic/SubscriptOutOfBoundsError.st,v 1.3 2003-04-24 08:20:15 cg Exp $'
5975
25a24298a177 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    23
! !