D7net
Home
Console
Upload
information
Create File
Create Folder
About
Tools
:
/
home
/
dateitor
/
www
/
vendor
/
blade-ui-kit
/
blade-icons
/
src
/
Exceptions
/
Filename :
SvgNotFound.php
back
Copy
<?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."); } }