Files
panel/app/Exceptions/Service/HasActiveServersException.php

15 lines
267 B
PHP
Raw Normal View History

<?php
2024-03-12 22:39:16 -04:00
namespace App\Exceptions\Service;
2024-03-12 22:39:16 -04:00
use App\Exceptions\DisplayException;
2025-09-24 13:34:19 +02:00
use Illuminate\Http\Response;
class HasActiveServersException extends DisplayException
{
public function getStatusCode(): int
{
return Response::HTTP_BAD_REQUEST;
}
}