<?php
declare(strict_types=1);
namespace Support\PDOProxy\Exception;
use Exception;
use Throwable;
class PDOProxyException extends Exception implements Throwable
{
public string $source;
public function __construct(string|null $message = "", int|null $code = 0, Throwable|null $previous = null, string|null $source = '')
{
parent::__construct($message, $code, $previous);
$this->source = $source;
}
}