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
|
|
|
|
{
|
2018-01-01 21:11:44 +00:00
|
|
|
/**
|
|
|
|
* @return int
|
|
|
|
*/
|
|
|
|
public function getStatusCode()
|
|
|
|
{
|
|
|
|
return Response::HTTP_BAD_REQUEST;
|
|
|
|
}
|
2017-09-15 05:16:03 +00:00
|
|
|
}
|