RecursionError.st
author Claus Gittinger <cg@exept.de>
Sat, 10 Nov 2001 15:14:31 +0100
changeset 6173 0716f65636a9
parent 6102 7fdf73f3256b
child 6210 d7039e2ae776
permissions -rw-r--r--
recursionError mayProceed under unix - not under win32

"{ Package: 'stx:libbasic' }"

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


!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.2 2001-11-10 14:14:31 cg Exp $'
! !