NotFoundError.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' }"

Error subclass:#NotFoundError
	instanceVariableNames:''
	classVariableNames:''
	poolDictionaries:''
	category:'Kernel-Exceptions-Errors'
!

!NotFoundError class methodsFor:'documentation'!

documentation
"
    raised when a value was not found in a collection
"
! !

!NotFoundError class methodsFor:'queries'!

mayProceed
    "By default, not found errors are proceedable (with nil).
     Subclasses may change this"

    ^ true
! !

!NotFoundError class methodsFor:'documentation'!

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