ContainerException   A
last analyzed

Complexity

Total Complexity 1

Size/Duplication

Total Lines 7
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 0

Importance

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

1 Method

Rating   Name   Duplication   Size   Complexity  
A __construct() 0 4 1
1
<?php
2
/*
3
 * Copyright (c) 2015 Juan José Torroglosa Ramón
4
 *
5
 * This file is part of the Cliphar package.
6
 *
7
 * For the full copyright and license information, please view
8
 * the LICENSE file that was distributed with this source code.
9
 */
10
11
namespace Cliphar\Container\Exception;
12
13
use Interop\Container\Exception\ContainerException as BaseContainerException;
14
15
/**
16
 * Class NotFoundException 
17
 */
18
class ContainerException extends \Exception implements BaseContainerException
19
{
20
    public function __construct($message = "", $code = 0, $previous = null)
21
    {
22
        parent::__construct($message, $code, $previous);
23
    }
24
}