20250224#1

This commit is contained in:
User
2025-02-24 18:33:53 +03:00
parent dfbcfdf321
commit 5b0c0bc7b4
6 changed files with 9 additions and 14 deletions

View File

@@ -1,16 +0,0 @@
<?php
namespace Rmphp\Storage\Repository;
use Throwable;
class RepositoryException extends \Exception {
public array $data;
public function __construct($message="", $code=0, array $data = [], Throwable $previous=null) {
parent::__construct($message, $code, $previous);
$this->data = $data;
}
}