CannotResumeError.st
author Claus Gittinger <cg@exept.de>
Tue, 03 Jun 2003 12:36:51 +0200
changeset 7327 ab17eb5f11a6
parent 7233 52b21f304183
child 7589 2ac0ac814fc8
permissions -rw-r--r--
printFormat

"{ Package: 'stx:libbasic' }"

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

!CannotResumeError class methodsFor:'documentation'!

documentation
"
    Raised if a method which was compiled non-resumable is asked to do so.
    As non-resumable code is faster and shorter, the compilers do not
    generate resumable code by default.
    Resumability can be enforced by a compiler switch or via a #return/#resume directive.
"
! !

!CannotResumeError class methodsFor:'documentation'!

version
    ^ '$Header: /cvs/stx/stx/libbasic/CannotResumeError.st,v 1.3 2003-04-24 08:25:30 cg Exp $'
! !