compiler/PPCCompilationError.st
author Jan Vrany <jan.vrany@fit.cvut.cz>
Tue, 08 Sep 2015 02:06:11 +0100
changeset 542 bb97dcbe2359
parent 534 a949c4fe44df
permissions -rw-r--r--
Use #skipIf: instead of <skip>

"{ Package: 'stx:goodies/petitparser/compiler' }"

"{ NameSpace: Smalltalk }"

Error subclass:#PPCCompilationError
	instanceVariableNames:''
	classVariableNames:''
	poolDictionaries:''
	category:'PetitCompiler-Exceptions'
!


!PPCCompilationError class methodsFor:'error signalling'!

signalWith: message
    ^ self signal: message
! !

!PPCCompilationError class methodsFor:'documentation'!

version_HG

    ^ '$Changeset: <not expanded> $'
! !