HOME


Mini Shell 1.0
DIR: /home/cardxfeb/www/vendor/blade-ui-kit/blade-icons/src/Exceptions/
Upload File :
Current File : //home/cardxfeb/www/vendor/blade-ui-kit/blade-icons/src/Exceptions/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.");
    }
}