Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
pterodactyl
GitHub Repository: pterodactyl/panel
Path: blob/1.0-develop/app/Exceptions/Service/Location/HasActiveNodesException.php
10276 views
1
<?php
2
3
namespace Pterodactyl\Exceptions\Service\Location;
4
5
use Illuminate\Http\Response;
6
use Pterodactyl\Exceptions\DisplayException;
7
8
class HasActiveNodesException extends DisplayException
9
{
10
public function getStatusCode(): int
11
{
12
return Response::HTTP_BAD_REQUEST;
13
}
14
}
15
16