2022-10-31 16:29:10 +00:00
|
|
|
<?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
|
2022-10-31 16:29:10 +00:00
|
|
|
{
|
|
|
|
public function getSolution(): Solution
|
|
|
|
{
|
|
|
|
return new Solutions\ManifestDoesNotExistSolution();
|
|
|
|
}
|
|
|
|
}
|