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