JFIF x x C C " } !1AQa "q2#BR$3br %&'()*456789:CDEFGHIJSTUVWXYZcdefghijstuvwxyz w !1AQ aq"2B #3Rbr{
File "StringFormatterError.php"
Full Path: /home/palsarh/web/palsarh.in/public_html/vendor/cuyz/valinor/src/Utility/String/StringFormatterError.php
File size: 463 bytes
MIME-type: text/x-php
Charset: utf-8
<?php
declare(strict_types=1);
namespace CuyZ\Valinor\Utility\String;
use RuntimeException;
/** @internal */
final class StringFormatterError extends RuntimeException
{
public function __construct(string $body, string $message = '', ?\Throwable $previous = null)
{
if ($message !== '') {
$message = ": $message";
}
parent::__construct("Message formatter error using `$body`$message.", previous: $previous);
}
}