mirror of
https://github.com/MrUnknownDE/panel.git
synced 2026-05-03 13:16:06 +02:00
15289b76a7
Will still need some tweaking and improvements to allow everything to be used.
18 lines
320 B
PHP
18 lines
320 B
PHP
<?php
|
|
|
|
namespace Pterodactyl\Exceptions\Service\Location;
|
|
|
|
use Illuminate\Http\Response;
|
|
use Pterodactyl\Exceptions\DisplayException;
|
|
|
|
class HasActiveNodesException extends DisplayException
|
|
{
|
|
/**
|
|
* @return int
|
|
*/
|
|
public function getStatusCode()
|
|
{
|
|
return Response::HTTP_BAD_REQUEST;
|
|
}
|
|
}
|