zhamao-framework/src/ZM/Exception/RobotNotFoundException.php
whale 169a751e0f update to 1.2 version
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
2020-04-29 15:29:56 +08:00

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);
}
}