RecursionError.st
author Claus Gittinger <cg@exept.de>
Sat, 17 Nov 2001 11:04:51 +0100
changeset 6210 d7039e2ae776
parent 6173 0716f65636a9
child 7232 1d05a293b8b0
permissions -rw-r--r--
caetgory change and documentation added
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
6102
7fdf73f3256b initial checkin
james
parents:
diff changeset
     1
"{ Package: 'stx:libbasic' }"
7fdf73f3256b initial checkin
james
parents:
diff changeset
     2
7fdf73f3256b initial checkin
james
parents:
diff changeset
     3
Error subclass:#RecursionError
7fdf73f3256b initial checkin
james
parents:
diff changeset
     4
	instanceVariableNames:''
7fdf73f3256b initial checkin
james
parents:
diff changeset
     5
	classVariableNames:''
7fdf73f3256b initial checkin
james
parents:
diff changeset
     6
	poolDictionaries:''
6210
d7039e2ae776 caetgory change and documentation added
Claus Gittinger <cg@exept.de>
parents: 6173
diff changeset
     7
	category:'Kernel-Exceptions-Errors'
6102
7fdf73f3256b initial checkin
james
parents:
diff changeset
     8
!
7fdf73f3256b initial checkin
james
parents:
diff changeset
     9
6210
d7039e2ae776 caetgory change and documentation added
Claus Gittinger <cg@exept.de>
parents: 6173
diff changeset
    10
!RecursionError class methodsFor:'documentation'!
d7039e2ae776 caetgory change and documentation added
Claus Gittinger <cg@exept.de>
parents: 6173
diff changeset
    11
d7039e2ae776 caetgory change and documentation added
Claus Gittinger <cg@exept.de>
parents: 6173
diff changeset
    12
documentation
d7039e2ae776 caetgory change and documentation added
Claus Gittinger <cg@exept.de>
parents: 6173
diff changeset
    13
"
d7039e2ae776 caetgory change and documentation added
Claus Gittinger <cg@exept.de>
parents: 6173
diff changeset
    14
    raised when the recursion level is too high - i.e. the execution stack
d7039e2ae776 caetgory change and documentation added
Claus Gittinger <cg@exept.de>
parents: 6173
diff changeset
    15
    is about to overflow.
d7039e2ae776 caetgory change and documentation added
Claus Gittinger <cg@exept.de>
parents: 6173
diff changeset
    16
"
d7039e2ae776 caetgory change and documentation added
Claus Gittinger <cg@exept.de>
parents: 6173
diff changeset
    17
! !
6102
7fdf73f3256b initial checkin
james
parents:
diff changeset
    18
6173
0716f65636a9 recursionError mayProceed under unix - not under win32
Claus Gittinger <cg@exept.de>
parents: 6102
diff changeset
    19
!RecursionError class methodsFor:'queries'!
0716f65636a9 recursionError mayProceed under unix - not under win32
Claus Gittinger <cg@exept.de>
parents: 6102
diff changeset
    20
0716f65636a9 recursionError mayProceed under unix - not under win32
Claus Gittinger <cg@exept.de>
parents: 6102
diff changeset
    21
mayProceed
0716f65636a9 recursionError mayProceed under unix - not under win32
Claus Gittinger <cg@exept.de>
parents: 6102
diff changeset
    22
    "under win32, the stack cannot grow - so we may not proceed there (sigh)"
0716f65636a9 recursionError mayProceed under unix - not under win32
Claus Gittinger <cg@exept.de>
parents: 6102
diff changeset
    23
0716f65636a9 recursionError mayProceed under unix - not under win32
Claus Gittinger <cg@exept.de>
parents: 6102
diff changeset
    24
    ^ OperatingSystem isMSWINDOWSlike not
0716f65636a9 recursionError mayProceed under unix - not under win32
Claus Gittinger <cg@exept.de>
parents: 6102
diff changeset
    25
0716f65636a9 recursionError mayProceed under unix - not under win32
Claus Gittinger <cg@exept.de>
parents: 6102
diff changeset
    26
    "Created: / 10.11.2001 / 15:10:56 / cg"
0716f65636a9 recursionError mayProceed under unix - not under win32
Claus Gittinger <cg@exept.de>
parents: 6102
diff changeset
    27
! !
0716f65636a9 recursionError mayProceed under unix - not under win32
Claus Gittinger <cg@exept.de>
parents: 6102
diff changeset
    28
6102
7fdf73f3256b initial checkin
james
parents:
diff changeset
    29
!RecursionError class methodsFor:'documentation'!
7fdf73f3256b initial checkin
james
parents:
diff changeset
    30
7fdf73f3256b initial checkin
james
parents:
diff changeset
    31
version
6210
d7039e2ae776 caetgory change and documentation added
Claus Gittinger <cg@exept.de>
parents: 6173
diff changeset
    32
    ^ '$Header: /cvs/stx/stx/libbasic/RecursionError.st,v 1.3 2001-11-17 10:04:35 cg Exp $'
6102
7fdf73f3256b initial checkin
james
parents:
diff changeset
    33
! !