From 68304b8b413b8e386d2bbc0dbdaa3036bd74bb2b Mon Sep 17 00:00:00 2001 From: Mohammad Alavi Date: Sun, 23 Jul 2023 15:48:57 +0330 Subject: [PATCH] feat: marked as deprecated --- Exceptions/WrongConfigurationsException.php | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/Exceptions/WrongConfigurationsException.php b/Exceptions/WrongConfigurationsException.php index f25a7b35..ba0ad3af 100644 --- a/Exceptions/WrongConfigurationsException.php +++ b/Exceptions/WrongConfigurationsException.php @@ -3,8 +3,12 @@ namespace Apiato\Core\Exceptions; use Apiato\Core\Abstracts\Exceptions\Exception; +use JetBrains\PhpStorm\Deprecated; use Symfony\Component\HttpFoundation\Response; +#[Deprecated( + reason: 'This exception is not used anywhere and will be removed in the next major release.' +)] class WrongConfigurationsException extends Exception { protected $code = Response::HTTP_INTERNAL_SERVER_ERROR;