pelican-panel-mirror/app/Exceptions/ManifestDoesNotExistException.php
2024-03-12 22:39:16 -04:00

15 lines
327 B
PHP

<?php
namespace App\Exceptions;
use Spatie\Ignition\Contracts\Solution;
use Spatie\Ignition\Contracts\ProvidesSolution;
class ManifestDoesNotExistException extends \Exception implements ProvidesSolution
{
public function getSolution(): Solution
{
return new Solutions\ManifestDoesNotExistSolution();
}
}