Files
panel-pelican-dev/app/Exceptions/ManifestDoesNotExistException.php

17 lines
390 B
PHP
Raw Normal View History

<?php
2024-03-12 22:39:16 -04:00
namespace App\Exceptions;
use App\Exceptions\Solutions\ManifestDoesNotExistSolution;
2025-09-24 13:34:19 +02:00
use Exception;
use Spatie\Ignition\Contracts\ProvidesSolution;
2025-09-24 13:34:19 +02:00
use Spatie\Ignition\Contracts\Solution;
class ManifestDoesNotExistException extends Exception implements ProvidesSolution
{
public function getSolution(): Solution
{
return new ManifestDoesNotExistSolution();
}
}