compiler/PPCCompilationError.st
author Jan Vrany <jan.vrany@fit.cvut.cz>
Tue, 18 Aug 2015 13:09:42 +0100
changeset 519 1563dce3c5b4
parent 518 a6d8b93441b0
child 534 a949c4fe44df
permissions -rw-r--r--
Portability: fixed RBLiteralValueNode>>isLiteralNumber to work under both - Pharo and Smalltalk/X

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