Completed
Push — master ( af310e...ca9412 )
by Nikola
05:51
created

Exception   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 7
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 0

Test Coverage

Coverage 0%

Importance

Changes 0
Metric Value
dl 0
loc 7
c 0
b 0
f 0
wmc 1
lcom 0
cbo 0
ccs 0
cts 4
cp 0
rs 10

1 Method

Rating   Name   Duplication   Size   Complexity  
A __construct() 0 4 1
1
<?php
2
3
declare(strict_types=1);
4
5
namespace RunOpenCode\Bundle\QueryResourcesLoader\Exception;
6
7
use RunOpenCode\Bundle\QueryResourcesLoader\Contract\ExceptionInterface;
8
9
/**
10
 * Base exception class for library.
11
 */
12
class Exception extends \Exception implements ExceptionInterface
13
{
14
    public function __construct(string $message, \Throwable $previous = null)
15
    {
16
        parent::__construct($message, 0, $previous);
17
    }
18
}
19