InvalidInstructionError.st
author Claus Gittinger <cg@exept.de>
Tue, 17 Jun 2003 22:13:34 +0200
changeset 7412 daae29634e02
parent 7231 5e1250b3f7f6
child 7587 89864caa2665
permissions -rw-r--r--
*** empty log message ***

"{ Package: 'stx:libbasic' }"

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

!InvalidInstructionError class methodsFor:'documentation'!

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

!InvalidInstructionError class methodsFor:'documentation'!

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