Completed
Push — master ( 3a2d63...6346ac )
by Albin
03:04
created

UnresolvableObjectException::__construct()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 4
Code Lines 2

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
dl 0
loc 4
rs 10
c 0
b 0
f 0
cc 1
eloc 2
nc 1
nop 2
1
<?php
2
3
namespace Gaufrette\Extras\Resolvable;
4
5
class UnresolvableObjectException extends \Exception
6
{
7
    /**
8
     * @param string          $path     Path of the unresolvable object
9
     * @param \Exception|null $previous Previous exception, if any
10
     */
11
    public function __construct($path, \Exception $previous = null)
12
    {
13
        parent::__construct($path, null, $previous);
14
    }
15
}
16