ContainerException::__construct()   A
last analyzed

Complexity

Conditions 1
Paths 1

Size

Total Lines 4
Code Lines 2

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
cc 1
eloc 2
nc 1
nop 3
dl 0
loc 4
rs 10
c 0
b 0
f 0
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
}