RecursionError.st
author james
Thu, 25 Oct 2001 08:04:22 +0200
changeset 6102 7fdf73f3256b
child 6173 0716f65636a9
permissions -rw-r--r--
initial checkin
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:''
7fdf73f3256b initial checkin
james
parents:
diff changeset
     7
	category:'Kernel-Exceptions'
7fdf73f3256b initial checkin
james
parents:
diff changeset
     8
!
7fdf73f3256b initial checkin
james
parents:
diff changeset
     9
7fdf73f3256b initial checkin
james
parents:
diff changeset
    10
7fdf73f3256b initial checkin
james
parents:
diff changeset
    11
!RecursionError class methodsFor:'documentation'!
7fdf73f3256b initial checkin
james
parents:
diff changeset
    12
7fdf73f3256b initial checkin
james
parents:
diff changeset
    13
version
7fdf73f3256b initial checkin
james
parents:
diff changeset
    14
    ^ '$Header: /cvs/stx/stx/libbasic/RecursionError.st,v 1.1 2001-10-25 06:04:22 james Exp $'
7fdf73f3256b initial checkin
james
parents:
diff changeset
    15
! !