VtuDotNGErrorException::__construct()   A
last analyzed

Complexity

Conditions 1
Paths 1

Size

Total Lines 4

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
dl 0
loc 4
rs 10
c 0
b 0
f 0
cc 1
nc 1
nop 2
1
<?php
2
/**
3
 * Created By: Henry Ejemuta
4
 * PC: Enrico Systems
5
 * Project: laravel-vtung
6
 * Company: Stimolive Technologies Limited
7
 * Class Name: VtuDotNGErrorException.php
8
 * Date Created: 9/27/20
9
 * Time Created: 7:24 PM
10
 */
11
12
namespace HenryEjemuta\LaravelVtuDotNG\Exceptions;
13
14
15
class VtuDotNGErrorException extends \Exception
16
{
17
    /**
18
     * VtuDotNGErrorException 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