mirror of
https://github.com/pelican-dev/panel.git
synced 2025-05-20 16:54:45 +02:00
18 lines
313 B
PHP
18 lines
313 B
PHP
<?php
|
|
|
|
namespace Pterodactyl\Exceptions\Service;
|
|
|
|
use Illuminate\Http\Response;
|
|
use Pterodactyl\Exceptions\DisplayException;
|
|
|
|
class HasActiveServersException extends DisplayException
|
|
{
|
|
/**
|
|
* @return int
|
|
*/
|
|
public function getStatusCode()
|
|
{
|
|
return Response::HTTP_BAD_REQUEST;
|
|
}
|
|
}
|