20250622#1

This commit is contained in:
User
2025-06-22 01:05:12 +03:00
parent 35026bb223
commit f42bc7751a
20 changed files with 10 additions and 427 deletions

View File

@@ -0,0 +1,16 @@
<?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;
}
}