add Macroable (build 440)

This commit is contained in:
crazywhalecc
2022-03-20 01:54:14 +08:00
parent c897da29c6
commit f0f120bd32
3 changed files with 61 additions and 1 deletions

View File

@@ -0,0 +1,15 @@
<?php
declare(strict_types=1);
namespace ZM\Exception;
use Throwable;
class MethodNotFoundException extends ZMException
{
public function __construct($message = '', $code = 0, Throwable $previous = null)
{
parent::__construct(zm_internal_errcode('E00073') . $message, $code, $previous);
}
}