SubscriptOutOfBoundsError.st
author Claus Gittinger <cg@exept.de>
Tue, 26 Feb 2002 14:02:26 +0100
changeset 6421 58dca33cf0fc
parent 6210 d7039e2ae776
child 7232 1d05a293b8b0
permissions -rw-r--r--
#valueNowOrOnUnwindDo: -> #ensure:
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
"
d7039e2ae776 caetgory change and documentation added
Claus Gittinger <cg@exept.de>
parents: 5975
diff changeset
    14
    raised when the index was ouf of a collections valid range for the index
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
6210
d7039e2ae776 caetgory change and documentation added
Claus Gittinger <cg@exept.de>
parents: 5975
diff changeset
    22
    ^ '$Header: /cvs/stx/stx/libbasic/SubscriptOutOfBoundsError.st,v 1.2 2001-11-17 10:04:26 cg Exp $'
5975
25a24298a177 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    23
! !