misc_pterodactyl-panel/app/Exceptions/ManifestDoesNotExistException.php

15 lines
335 B
PHP
Raw Normal View History

<?php
namespace Pterodactyl\Exceptions;
use Spatie\Ignition\Contracts\Solution;
use Spatie\Ignition\Contracts\ProvidesSolution;
2022-11-29 17:53:59 +00:00
class ManifestDoesNotExistException extends \Exception implements ProvidesSolution
{
public function getSolution(): Solution
{
return new Solutions\ManifestDoesNotExistSolution();
}
}