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;
2023-02-23 19:30:16 +00:00
class ManifestDoesNotExistException extends \Exception implements ProvidesSolution
{
public function getSolution(): Solution
{
return new Solutions\ManifestDoesNotExistSolution();
}
}