File manager - Edit - /home/ferretapmx/public_html/plugins/system/helixultimate/vendor/scssphp/scssphp/src/Exception/SimpleSassFormatException.php
Back
<?php /** * SCSSPHP * * @copyright 2012-2020 Leaf Corcoran * * @license http://opensource.org/licenses/MIT MIT * * @link http://scssphp.github.io/scssphp */ namespace ScssPhp\ScssPhp\Exception; use ScssPhp\ScssPhp\StackTrace\Trace; use ScssPhp\ScssPhp\Util; use ScssPhp\ScssPhp\Util\ErrorUtil; use SourceSpan\FileSpan; /** * @internal */ final class SimpleSassFormatException extends \Exception implements SassFormatException { private readonly string $originalMessage; private readonly FileSpan $span; public function __construct(string $message, FileSpan $span, ?\Throwable $previous = null) { $this->originalMessage = $message; $this->span = $span; parent::__construct(ErrorUtil::formatErrorMessage($message, $span, $this->getSassTrace()), 0, $previous); } /** * Gets the original message without the location info in it. */ public function getOriginalMessage(): string { return $this->originalMessage; } public function getSpan(): FileSpan { return $this->span; } public function getSassTrace(): Trace { return new Trace([Util::frameForSpan($this->span, 'root stylesheet')]); } public function withAdditionalSpan(FileSpan $span, string $label, ?\Throwable $previous = null): MultiSpanSassFormatException { return new MultiSpanSassFormatException($this->originalMessage, $this->span, '', [$label => $span], $previous); } public function withTrace(Trace $trace, ?\Throwable $previous = null): SassRuntimeException { return new SimpleSassRuntimeException($this->originalMessage, $this->span, $trace, $previous); } }
| ver. 1.4 |
Github
|
.
| PHP 8.2.32 | Generation time: 0.06 |
proxy
|
phpinfo
|
Settings