ContextError.st
author Claus Gittinger <cg@exept.de>
Tue, 17 Jun 2003 18:10:28 +0200
changeset 7408 43bd10f2f2e6
parent 7233 52b21f304183
child 7589 2ac0ac814fc8
permissions -rw-r--r--
*** empty log message ***

"{ Package: 'stx:libbasic' }"

ProceedableError subclass:#ContextError
	instanceVariableNames:'context'
	classVariableNames:''
	poolDictionaries:''
	category:'Kernel-Methods'
!

!ContextError class methodsFor:'documentation'!

documentation
"
    The parent of context related resumability errors.
"
! !

!ContextError class methodsFor:'documentation'!

version
    ^ '$Header: /cvs/stx/stx/libbasic/ContextError.st,v 1.3 2003-04-24 08:26:02 cg Exp $'
! !