| Current Path : /var/www/html/dls/lib/php-css-parser/Parsing/ |
| Current File : /var/www/html/dls/lib/php-css-parser/Parsing/SourceException.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;
}
}