RecursiveExceptionError.st
author Claus Gittinger <cg@exept.de>
Fri, 07 Sep 2001 13:14:21 +0200
changeset 5982 2965b58b4258
parent 4554 db264efac2c0
child 6210 d7039e2ae776
permissions -rw-r--r--
ANSI accessors

"
 COPYRIGHT (c) 1999 by eXept Software AG
              All Rights Reserved

 This software is furnished under a license and may be used
 only in accordance with the terms of that license and with the
 inclusion of the above copyright notice.   This software may not
 be provided or otherwise made available to, or used by, any
 other person.  No title to or ownership of the software is
 hereby transferred.
"



GenericException subclass:#RecursiveExceptionError
	instanceVariableNames:''
	classVariableNames:''
	poolDictionaries:''
	category:'Kernel-Exceptions'
!

!RecursiveExceptionError class methodsFor:'documentation'!

copyright
"
 COPYRIGHT (c) 1999 by eXept Software AG
              All Rights Reserved

 This software is furnished under a license and may be used
 only in accordance with the terms of that license and with the
 inclusion of the above copyright notice.   This software may not
 be provided or otherwise made available to, or used by, any
 other person.  No title to or ownership of the software is
 hereby transferred.
"


!

documentation
"
    RecursiveExceptionError is raised, if the same exception is raised
    again in an exception handler.

    The parameter is the recursive exception.
"


! !

!RecursiveExceptionError class methodsFor:'initialization'!

initialize

    NotifierString := 'recursive exception raise in handler'.

    "
     self initialize
    "


! !

!RecursiveExceptionError class methodsFor:'queries'!

mayProceed

    ^ false


! !

!RecursiveExceptionError class methodsFor:'documentation'!

version
    ^ '$Header: /cvs/stx/stx/libbasic/RecursiveExceptionError.st,v 1.2 1999-08-04 16:57:59 stefan Exp $'
! !
RecursiveExceptionError initialize!