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