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

responsibleException   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 8
Duplicated Lines 0 %

Importance

Changes 0
Metric Value
eloc 2
c 0
b 0
f 0
dl 0
loc 8
rs 10
wmc 1

1 Method

Rating   Name   Duplication   Size   Complexity  
A __construct() 0 3 1
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