nooktheme/app/Exceptions/Service/Location/HasActiveNodesException.php
mowetentertainment1 eb5b65cec6 initial commit
2025-11-01 19:45:11 -04:00

15 lines
290 B
PHP

<?php
namespace Pterodactyl\Exceptions\Service\Location;
use Illuminate\Http\Response;
use Pterodactyl\Exceptions\DisplayException;
class HasActiveNodesException extends DisplayException
{
public function getStatusCode(): int
{
return Response::HTTP_BAD_REQUEST;
}
}