InvalidByteCodeError.st
author Claus Gittinger <cg@exept.de>
Thu, 24 Apr 2003 10:17:51 +0200
changeset 7231 5e1250b3f7f6
parent 7145 a2a21668f317
child 7587 89864caa2665
permissions -rw-r--r--
comments

"{ 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 $'
! !