Passed
Push — master ( 635200...ad05d4 )
by Vince
03:32 queued 01:55
created

responsibleException::__construct()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 3
Code Lines 1

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
cc 1
eloc 1
c 0
b 0
f 0
nc 1
nop 2
dl 0
loc 3
rs 10
1
<?php
2
/**
3
 * ==================================
4
 * Responsible PHP API
5
 * ==================================
6
 *
7
 * @link Git https://github.com/vince-scarpa/responsibleAPI.git
8
 *
9
 * @api Responible API
10
 * @package responsible\core\exception
11
 *
12
 * @author Vince scarpa <[email protected]>
13
 *
14
 */
15
namespace responsible\core\exception;
16
17
class responsibleException extends \Exception
18
{
19
    /**
20
     * [__construct Use parent constructor]
21
     */
22
    public function __construct($eMessage, $code)
23
    {
24
        parent::__construct($eMessage, $code);
25
    }
26
}
27