2022-10-31 12:29:10 -04:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace Pterodactyl\Exceptions;
|
|
|
|
|
|
|
|
use Spatie\Ignition\Contracts\Solution;
|
|
|
|
use Spatie\Ignition\Contracts\ProvidesSolution;
|
|
|
|
|
2023-02-23 12:30:16 -07:00
|
|
|
class ManifestDoesNotExistException extends \Exception implements ProvidesSolution
|
2022-10-31 12:29:10 -04:00
|
|
|
{
|
|
|
|
public function getSolution(): Solution
|
|
|
|
{
|
|
|
|
return new Solutions\ManifestDoesNotExistSolution();
|
|
|
|
}
|
|
|
|
}
|