2017-09-15 05:16:03 +00:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace Pterodactyl\Exceptions\Service\Location;
|
|
|
|
|
2018-01-01 21:11:44 +00:00
|
|
|
use Illuminate\Http\Response;
|
2017-09-15 05:16:03 +00:00
|
|
|
use Pterodactyl\Exceptions\DisplayException;
|
|
|
|
|
|
|
|
class HasActiveNodesException extends DisplayException
|
|
|
|
{
|
2022-10-14 16:59:20 +00:00
|
|
|
public function getStatusCode(): int
|
2018-01-01 21:11:44 +00:00
|
|
|
{
|
|
|
|
return Response::HTTP_BAD_REQUEST;
|
|
|
|
}
|
2017-09-15 05:16:03 +00:00
|
|
|
}
|