BadLiteralsError.st
author Claus Gittinger <cg@exept.de>
Mon, 19 May 2003 10:24:25 +0200
changeset 7294 c4e6d095a150
parent 7231 5e1250b3f7f6
child 7587 89864caa2665
permissions -rw-r--r--
category changes

"{ Package: 'stx:libbasic' }"

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

!BadLiteralsError class methodsFor:'documentation'!

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

!BadLiteralsError class methodsFor:'documentation'!

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