Exception::errorMessage()   A
last analyzed

Complexity

Conditions 1
Paths 1

Size

Total Lines 3
Code Lines 1

Duplication

Lines 0
Ratio 0 %

Importance

Changes 1
Bugs 0 Features 0
Metric Value
cc 1
eloc 1
c 1
b 0
f 0
nc 1
nop 0
dl 0
loc 3
rs 10
1
<?php
2
3
// +----------------------------------------------------------------------
4
// | ThinkPHP6企业微信群通知 for ThinkLibrary 6.0
5
// +----------------------------------------------------------------------
6
// | 版权所有 2017~2020 [ https://www.dtapp.net ]
7
// +----------------------------------------------------------------------
8
// | 官方网站: https://www.dtapp.net
9
// +----------------------------------------------------------------------
10
// | 开源协议 ( https://mit-license.org )
11
// +----------------------------------------------------------------------
12
// | 国内仓库地址 :https://gitee.com/liguangchun/qyweixin-grouprobo
13
// | 国外仓库地址 :https://github.com/GC0202/qyweixin-grouprobo
14
// | Packagist 地址 :https://packagist.org/packages/liguangchun/qyweixin-grouprobo
15
// +----------------------------------------------------------------------
16
17
namespace DtApp\Notice\QyWeiXin\exception;
18
19
/**
20
 * 错误处理
21
 * Class Exception
22
 * @package DtApp\Notice\QyWeiXin\exception
23
 */
24
class Exception extends \Exception
25
{
26
    public function errorMessage()
27
    {
28
        return $this->getMessage();
29
    }
30
}
31