File modules/dsl/DslParserException.class.php

Last commit: Sat May 28 18:00:13 2022 +0200	Jan Dankert	New: DSL with a much better syntax parsing and support for assignments, conditions, ...
1 <?php 2 3 namespace dsl; 4 5 6 class DslParserException extends DslException 7 { 8 /** 9 * DslParserException constructor. 10 * @param $message 11 * @param $lineNumber 12 */ 13 public function __construct($message, $lineNumber=null) 14 { 15 parent::__construct( $message . ($lineNumber?' on line ' . $lineNumber:'') ); 16 } 17 }
Download modules/dsl/DslParserException.class.php
History Sat, 28 May 2022 18:00:13 +0200 Jan Dankert New: DSL with a much better syntax parsing and support for assignments, conditions, ...