mirror of
https://github.com/pelican-dev/panel.git
synced 2025-05-19 22:14:45 +02:00
15 lines
327 B
PHP
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();
|
|
}
|
|
}
|