RecursionError.st
author Stefan Vogel <sv@exept.de>
Fri, 20 Jun 2003 09:32:25 +0200
changeset 7435 c5afb1b0fd1b
parent 7232 1d05a293b8b0
child 7586 63e4900c8931
permissions -rw-r--r--
Prepare for moving of SubclassInfo to subclass instcar in Class
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
"
7232
1d05a293b8b0 comments
Claus Gittinger <cg@exept.de>
parents: 6210
diff changeset
    14
    Raised when the recursion level is too high - i.e. the execution stack
6210
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
7232
1d05a293b8b0 comments
Claus Gittinger <cg@exept.de>
parents: 6210
diff changeset
    32
    ^ '$Header: /cvs/stx/stx/libbasic/RecursionError.st,v 1.4 2003-04-24 08:20:14 cg Exp $'
6102
7fdf73f3256b initial checkin
james
parents:
diff changeset
    33
! !