mirror of
https://github.com/zhamao-robot/zhamao-framework.git
synced 2026-03-19 13:44:52 +08:00
Generate systemd script Default info_level set to 2 Modify & add some comment for Example module Brand new Console Add daemon command argument Add #OnTick annotation Add ZMRobot API class
21 lines
346 B
PHP
21 lines
346 B
PHP
<?php
|
|
|
|
|
|
namespace ZM\Exception;
|
|
|
|
|
|
use Exception;
|
|
use Throwable;
|
|
|
|
/**
|
|
* Class RobotNotFoundException
|
|
* @package ZM\Exception
|
|
* @since 1.2
|
|
*/
|
|
class RobotNotFoundException extends Exception
|
|
{
|
|
public function __construct($message = "", $code = 0, Throwable $previous = null) {
|
|
parent::__construct($message, $code, $previous);
|
|
}
|
|
}
|