mirror of
https://github.com/pelican-dev/panel.git
synced 2025-05-19 21:04:44 +02:00
15 lines
283 B
PHP
15 lines
283 B
PHP
<?php
|
|
|
|
namespace Pterodactyl\Exceptions\Service;
|
|
|
|
use Illuminate\Http\Response;
|
|
use Pterodactyl\Exceptions\DisplayException;
|
|
|
|
class HasActiveServersException extends DisplayException
|
|
{
|
|
public function getStatusCode(): int
|
|
{
|
|
return Response::HTTP_BAD_REQUEST;
|
|
}
|
|
}
|