Completed
Pull Request — master (#2)
by Alessandro
02:37
created

ExistantClientException   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 14
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 0

Test Coverage

Coverage 0%

Importance

Changes 1
Bugs 0 Features 1
Metric Value
wmc 1
c 1
b 0
f 1
lcom 0
cbo 0
dl 0
loc 14
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 Facile\MongoDbBundle\Exceptions;
6
7
/**
8
 * Class ExistantClientException.
9
 */
10
class ExistantClientException extends \Exception
11
{
12
    /**
13
     * ExistantClientException constructor.
14
     *
15
     * @param string $message
16
     * @param int    $code
17
     * @param null   $previousException
18
     */
19
    public function __construct($message, $code = 0, $previousException = null)
20
    {
21
        parent::__construct($message, $code, $previousException);
22
    }
23
}
24