pelican-panel-mirror/app/Exceptions/ManifestDoesNotExistException.php
2025-06-23 08:54:51 -04:00

17 lines
390 B
PHP

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