diff -r 1e45d3c96ec5 -r b5316ef15274 compiler/PPCCompilationError.st --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/compiler/PPCCompilationError.st Mon Aug 17 12:13:16 2015 +0100 @@ -0,0 +1,23 @@ +"{ 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 methodsFor:'signaling'! + +signalWith: message + self signal: message +! ! +