mirror of
https://github.com/pelican-dev/panel.git
synced 2025-06-26 23:01:08 +02:00
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();
|
|
}
|
|
}
|