FleetCart/Modules/Core/Foundation/Asset/AssetNotFoundException.php

14 lines
237 B
PHP
Raw Normal View History

2023-06-11 12:14:03 +00:00
<?php
namespace Modules\Core\Foundation\Asset;
use Exception;
class AssetNotFoundException extends Exception
{
public static function make($asset)
{
return new static("Asset [$asset] not found.");
}
}