mirror of
https://github.com/zhamao-robot/zhamao-framework.git
synced 2026-07-22 16:15:34 +08:00
16 lines
306 B
PHP
16 lines
306 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
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);
|
|
}
|
|
}
|