mirror of
https://github.com/zhamao-robot/zhamao-framework.git
synced 2026-07-23 08:35:35 +08:00
16 lines
311 B
PHP
16 lines
311 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);
|
|
}
|
|
}
|