BusinessException::__construct()   A
last analyzed

Complexity

Conditions 1
Paths 1

Size

Total Lines 4

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
cc 1
nc 1
nop 2
dl 0
loc 4
rs 10
c 0
b 0
f 0
1
<?php
2
3
namespace CloudyCity\IPayNowSDK\Exceptions;
4
5
class BusinessException extends GatewayException
6
{
7
    /**
8
     * Bootstrap.
9
     *
10
     * @author yansongda <[email protected]>
11
     *
12
     * @param string       $message
13
     * @param array|string $raw
14
     */
15
    public function __construct($message, $raw = [])
16
    {
17
        parent::__construct('ERROR_BUSINESS: '.$message, $raw, self::ERROR_BUSINESS);
18
    }
19
}
20