mirror of
https://github.com/pelican-dev/panel.git
synced 2025-09-09 00:58:36 +02:00

Co-authored-by: RMartinOscar <40749467+RMartinOscar@users.noreply.github.com> Co-authored-by: Boy132 <Boy132@users.noreply.github.com> Co-authored-by: Lance Pioch <git@lance.sh>
17 lines
390 B
PHP
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();
|
|
}
|
|
}
|