16c2b606b4
Co-authored-by: Matthew Penner <matthew@pterodactyl.io>
15 lines
349 B
PHP
15 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();
|
|
}
|
|
}
|