NotFoundError.st
author Claus Gittinger <cg@exept.de>
Fri, 09 Nov 2001 16:18:46 +0100
changeset 6172 a3c88ea5efe9
parent 5975 25a24298a177
child 6210 d7039e2ae776
permissions -rw-r--r--
comment and iso8601 (time/date formats) fixes

"{ Package: 'stx:libbasic' }"

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


!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.1 2001-09-07 10:37:14 cg Exp $'
! !