RecursionError.st
author Stefan Vogel <sv@exept.de>
Fri, 09 May 2003 18:11:22 +0200
changeset 7280 7afcccb7c856
parent 7232 1d05a293b8b0
child 7586 63e4900c8931
permissions -rw-r--r--
Fix pidgin spelling: 'does not exists' and 'not exists'

"{ Package: 'stx:libbasic' }"

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

!RecursionError class methodsFor:'documentation'!

documentation
"
    Raised when the recursion level is too high - i.e. the execution stack
    is about to overflow.
"
! !

!RecursionError class methodsFor:'queries'!

mayProceed
    "under win32, the stack cannot grow - so we may not proceed there (sigh)"

    ^ OperatingSystem isMSWINDOWSlike not

    "Created: / 10.11.2001 / 15:10:56 / cg"
! !

!RecursionError class methodsFor:'documentation'!

version
    ^ '$Header: /cvs/stx/stx/libbasic/RecursionError.st,v 1.4 2003-04-24 08:20:14 cg Exp $'
! !