feature/cierres #30

Merged
aldarien merged 460 commits from feature/cierres into develop 2025-09-11 15:16:17 -03:00
334 changed files with 845 additions and 13454 deletions
Showing only changes of commit 55745a8d0a - Show all commits

View File

@ -6,10 +6,15 @@ use Throwable;
class EmptyResult extends Exception class EmptyResult extends Exception
{ {
public function __construct(public string $query, ?Throwable $previous = null) public function __construct(public string $query, ?Throwable $previous = null, protected ?array $data = null)
{ {
$message = "Empty results for {$query}"; $message = "Empty results for {$query}";
$code = 700; $code = 700;
parent::__construct($message, $code, $previous); parent::__construct($message, $code, $previous);
} }
public function getData(): ?array
{
return $this->data;
}
} }