🚀 مُصادَق: تحديث برمجي جديد 2026-05-03 15:51

This commit is contained in:
Hamza-Ayed
2026-05-03 15:51:53 +03:00
parent e182faad1d
commit 81a3e5188e
12 changed files with 415 additions and 6060 deletions

View File

@@ -0,0 +1,30 @@
<?php
declare(strict_types=1);
namespace App\Core\Exceptions;
use Exception;
class HttpException extends Exception
{
private string $errorCode;
private array $data;
public function __construct(string $message, string $errorCode = 'ERROR', int $statusCode = 500, array $data = [])
{
parent::__construct($message, $statusCode);
$this->errorCode = $errorCode;
$this->data = $data;
}
public function getErrorCode(): string
{
return $this->errorCode;
}
public function getData(): array
{
return $this->data;
}
}