Completed
Push — master ( 8cb712...95a8ed )
by
unknown
01:17
created

NotFoundException   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 11
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 0

Importance

Changes 0
Metric Value
wmc 1
lcom 0
cbo 0
dl 0
loc 11
rs 10
c 0
b 0
f 0

1 Method

Rating   Name   Duplication   Size   Complexity  
A __construct() 0 8 1
1
<?php
2
3
namespace Luigel\LaravelPaymongo\Exceptions;
4
5
use Exception;
6
use Throwable;
7
8
class NotFoundException extends Exception
9
{
10
    public function __construct(
11
        $message = 'Not found record',
12
        $code = 404,
13
        Throwable $previous = null
14
    )
15
    {
16
        parent::__construct($message, $code, $previous);
17
    }
18
}