InvalidByteCodeError.st
author Stefan Vogel <sv@exept.de>
Fri, 20 Jun 2003 09:32:25 +0200
changeset 7435 c5afb1b0fd1b
parent 7231 5e1250b3f7f6
child 7587 89864caa2665
permissions -rw-r--r--
Prepare for moving of SubclassInfo to subclass instcar in Class

"{ Package: 'stx:libbasic' }"

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

!InvalidByteCodeError class methodsFor:'documentation'!

documentation
"
    Triggered by the VM, if an invalid bytecode is encountered in a method/block
"
! !

!InvalidByteCodeError class methodsFor:'documentation'!

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