misc_pterodactyl-panel/app/Exceptions/ManifestDoesNotExistException.php
2023-02-23 12:30:16 -07:00

14 lines
335 B
PHP

<?php
namespace Pterodactyl\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();
}
}