mirror of
https://github.com/zhamao-robot/zhamao-framework.git
synced 2026-07-08 09:15:37 +08:00
20 lines
365 B
PHP
20 lines
365 B
PHP
<?php
|
|
|
|
|
|
namespace ZM\Exception;
|
|
|
|
|
|
use Throwable;
|
|
|
|
/**
|
|
* Class RobotNotFoundException
|
|
* @package ZM\Exception
|
|
* @since 1.2
|
|
*/
|
|
class RobotNotFoundException extends ZMException
|
|
{
|
|
public function __construct($message = "", $code = 0, Throwable $previous = null) {
|
|
parent::__construct(zm_internal_errcode("E00037") . $message, $code, $previous);
|
|
}
|
|
}
|