mirror of
https://github.com/zhamao-robot/zhamao-framework.git
synced 2026-07-07 16:55:35 +08:00
14 lines
282 B
PHP
14 lines
282 B
PHP
|
|
<?php
|
||
|
|
|
||
|
|
|
||
|
|
namespace ZM\Exception;
|
||
|
|
|
||
|
|
|
||
|
|
use Throwable;
|
||
|
|
|
||
|
|
class ModulePackException extends ZMException
|
||
|
|
{
|
||
|
|
public function __construct($message = "", $code = 0, Throwable $previous = null) {
|
||
|
|
parent::__construct(zm_internal_errcode("E00044") . $message, $code, $previous);
|
||
|
|
}
|
||
|
|
}
|