PATH:
home
/
cardxfeb
/
public_html
/
vendor
/
blade-ui-kit
/
blade-icons
/
src
/
Exceptions
/
Editing: SvgNotFound.php
<?php declare(strict_types=1); namespace BladeUI\Icons\Exceptions; use Exception; final class SvgNotFound extends Exception { public static function missing(string $set, string $name): self { return new self("Svg by name \"$name\" from set \"$set\" not found."); } }
SAVE
CANCEL