enhancement for BotCommand and CommandArgument

This commit is contained in:
crazywhalecc
2022-12-26 03:19:53 +08:00
parent 73151db726
commit efda3f4408
10 changed files with 625 additions and 66 deletions

View File

@@ -0,0 +1,16 @@
<?php
declare(strict_types=1);
namespace ZM\Exception;
class WaitTimeoutException extends ZMException
{
public $module;
public function __construct($module, $message = '', $code = 0, \Throwable $previous = null)
{
parent::__construct($message, '', $code, $previous);
$this->module = $module;
}
}