VTPassErrorException::__construct()   A
last analyzed

Complexity

Conditions 1
Paths 1

Size

Total Lines 3
Code Lines 1

Duplication

Lines 0
Ratio 0 %

Importance

Changes 1
Bugs 0 Features 0
Metric Value
eloc 1
c 1
b 0
f 0
dl 0
loc 3
rs 10
cc 1
nc 1
nop 2
1
<?php
2
/**
3
 * Created By: Henry Ejemuta
4
 * Project: laravel-vtpass
5
 * Class Name: VTPassErrorException.php
6
 * Date Created: 7/14/20
7
 * Time Created: 5:14 PM
8
 */
9
10
namespace HenryEjemuta\LaravelVTPass\Exceptions;
11
12
class VTPassErrorException extends \Exception
13
{
14
    /**
15
     * VTPassErrorException constructor.
16
     * @param string $message
17
     * @param $code
18
     */
19
    public function __construct(string $message, $code)
20
    {
21
        parent::__construct($message, $code);
22
    }
23
24
}
25