NumberingGeneratorException   A
last analyzed

Complexity

Total Complexity 1

Size/Duplication

Total Lines 11
Duplicated Lines 0 %

Test Coverage

Coverage 100%

Importance

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

1 Method

Rating   Name   Duplication   Size   Complexity  
A __construct() 0 3 1
1
<?php
2
declare(strict_types=1);
3
4
namespace LSB\NumberingBundle\Exception;
5
6
/**
7
 * Class NumberingGeneratorException
8
 */
9
class NumberingGeneratorException extends \Exception
10
{
11
    /**
12
     * NumberingGeneratorException constructor.
13
     * @param $message
14
     * @param int $code
15
     * @param \Throwable|null $previous
16
     */
17 1
    public function __construct($message, $code = 0, \Throwable $previous = null)
18
    {
19 1
        parent::__construct($message, $code, $previous);
20 1
    }
21
}
22