mirror of
https://github.com/zhamao-robot/zhamao-framework.git
synced 2026-07-22 16:15:34 +08:00
16 lines
307 B
PHP
16 lines
307 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace ZM\Store\Database;
|
|
|
|
use ZM\Exception\ZMException;
|
|
|
|
class DBException extends ZMException
|
|
{
|
|
public function __construct(string $description, int $code = 0, ?\Throwable $previous = null)
|
|
{
|
|
parent::__construct($description, $code, $previous);
|
|
}
|
|
}
|