Completed
Push — master ( a8bf63...814c7f )
by Henry
10:23
created

GecharlErrorException   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 12
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 0

Importance

Changes 0
Metric Value
wmc 1
lcom 0
cbo 0
dl 0
loc 12
rs 10
c 0
b 0
f 0

1 Method

Rating   Name   Duplication   Size   Complexity  
A __construct() 0 4 1
1
<?php
2
/**
3
 * Created By: Henry Ejemuta
4
 * PC: Enrico Systems
5
 * Project: laravel-gecharl
6
 * Company: Stimolive Technologies Limited
7
 * Class Name: GecharlErrorException.php
8
 * Date Created: 9/27/20
9
 * Time Created: 7:24 PM
10
 */
11
12
namespace HenryEjemuta\LaravelGecharl\Exceptions;
13
14
15
class GecharlErrorException extends \Exception
16
{
17
    /**
18
     * GecharlErrorException constructor.
19
     * @param string $message
20
     * @param $code
21
     */
22
    public function __construct(string $message, $code)
23
    {
24
        parent::__construct($message, $code);
25
    }
26
}
27