NoByteCodeError.st
author Stefan Vogel <sv@exept.de>
Fri, 11 Jul 2003 19:52:44 +0200
changeset 7493 5c67c45b11cb
parent 7231 5e1250b3f7f6
child 7587 89864caa2665
permissions -rw-r--r--
New select for fair scheduling (not giving low filedescriptors precedence)

"{ Package: 'stx:libbasic' }"

InvalidCodeError subclass:#NoByteCodeError
	instanceVariableNames:''
	classVariableNames:''
	poolDictionaries:''
	category:'Kernel-Exceptions-ExecutionErrors'
!

!NoByteCodeError class methodsFor:'documentation'!

documentation
"
    Triggered by the VM, if an method/block without code is to be executed
"
! !

!NoByteCodeError class methodsFor:'documentation'!

version
    ^ '$Header: /cvs/stx/stx/libbasic/NoByteCodeError.st,v 1.2 2003-04-24 08:17:40 cg Exp $'
! !