mirror of
https://github.com/zhamao-robot/zhamao-framework.git
synced 2026-07-07 00:35:36 +08:00
15 lines
258 B
PHP
15 lines
258 B
PHP
<?php
|
|
|
|
|
|
namespace ZM\Exception;
|
|
|
|
|
|
use Throwable;
|
|
|
|
class DbException extends ZMKnownException
|
|
{
|
|
public function __construct($message = "", $code = 0, Throwable $previous = null) {
|
|
parent::__construct("E00043", $message, $code, $previous);
|
|
}
|
|
}
|