VTPassErrorException   A
last analyzed

Complexity

Total Complexity 1

Size/Duplication

Total Lines 10
Duplicated Lines 0 %

Importance

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

1 Method

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