moodle/lib/php-css-parser/Parsing/SourceException.php
Frederic Massart fbe18cc022 MDL-55224 core: Import PHP-CSS-Parser into core
Part of MDL-55071
2016-09-23 10:49:49 +01:00

18 lines
357 B
PHP

<?php
namespace Sabberworm\CSS\Parsing;
class SourceException extends \Exception {
private $iLineNo;
public function __construct($sMessage, $iLineNo = 0) {
$this->iLineNo = $iLineNo;
if (!empty($iLineNo)) {
$sMessage .= " [line no: $iLineNo]";
}
parent::__construct($sMessage);
}
public function getLineNo() {
return $this->iLineNo;
}
}