See Release Notes
Long Term Support Release
Differences Between: [Versions 39 and 401] [Versions 39 and 402] [Versions 39 and 403]
1 <?php 2 3 namespace Sabberworm\CSS\Parsing; 4 5 class SourceException extends \Exception { 6 private $iLineNo; 7 public function __construct($sMessage, $iLineNo = 0) { 8 $this->iLineNo = $iLineNo; 9 if (!empty($iLineNo)) { 10 $sMessage .= " [line no: $iLineNo]"; 11 } 12 parent::__construct($sMessage); 13 } 14 15 public function getLineNo() { 16 return $this->iLineNo; 17 } 18 }
title
Description
Body
title
Description
Body
title
Description
Body
title
Body