IndexNotFoundError.st
author Claus Gittinger <cg@exept.de>
Sun, 27 Apr 2003 17:40:18 +0200
changeset 7241 06359d192b65
parent 6210 d7039e2ae776
child 7586 63e4900c8931
permissions -rw-r--r--
comment
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
NotFoundError subclass:#IndexNotFoundError
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
!IndexNotFoundError 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 a bad index/key is used when accessing a collection.
d7039e2ae776 caetgory change and documentation added
Claus Gittinger <cg@exept.de>
parents: 5975
diff changeset
    15
"
d7039e2ae776 caetgory change and documentation added
Claus Gittinger <cg@exept.de>
parents: 5975
diff changeset
    16
! !
5975
25a24298a177 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    17
25a24298a177 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    18
!IndexNotFoundError class methodsFor:'documentation'!
25a24298a177 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    19
25a24298a177 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    20
version
6210
d7039e2ae776 caetgory change and documentation added
Claus Gittinger <cg@exept.de>
parents: 5975
diff changeset
    21
    ^ '$Header: /cvs/stx/stx/libbasic/IndexNotFoundError.st,v 1.2 2001-11-17 10:04:18 cg Exp $'
5975
25a24298a177 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    22
! !