File "SourceException.php"

Full Path: /home/warrior1/public_html/wp-content/plugins/mailpoet/vendor-prefixed/sabberworm/php-css-parser/src/Parsing/SourceException.php
File size: 398 bytes
MIME-type: text/x-php
Charset: utf-8

<?php
namespace MailPoetVendor\Sabberworm\CSS\Parsing;
if (!defined('ABSPATH')) exit;
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;
 }
}