1
1
mirror of https://github.com/pterodactyl/panel.git synced 2025-02-01 03:11:35 +01:00
Pterodactyl-Panel/app/Exceptions/ManifestDoesNotExistException.php
Lance Pioch 16c2b606b4
Add ManifestDoesNotExistException and Solution (#4455)
Co-authored-by: Matthew Penner <matthew@pterodactyl.io>
2022-10-31 10:29:10 -06:00

16 lines
349 B
PHP

<?php
namespace Pterodactyl\Exceptions;
use Exception;
use Spatie\Ignition\Contracts\Solution;
use Spatie\Ignition\Contracts\ProvidesSolution;
class ManifestDoesNotExistException extends Exception implements ProvidesSolution
{
public function getSolution(): Solution
{
return new Solutions\ManifestDoesNotExistSolution();
}
}