Files
zhamao-framework/src/ZM/Exception/LightCacheException.php

16 lines
306 B
PHP
Raw Normal View History

2021-09-01 14:14:00 +08:00
<?php
declare(strict_types=1);
2021-09-01 14:14:00 +08:00
namespace ZM\Exception;
use Throwable;
class LightCacheException extends ZMKnownException
{
public function __construct($err_code, $message = '', $code = 0, Throwable $previous = null)
{
2021-09-01 14:14:00 +08:00
parent::__construct($err_code, $message, $code, $previous);
}
}