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