Completed
Push — ezp26175-exception_on_non_defa... ( 896160...624e06 )
by
unknown
31:45
created

BinaryFileNotFoundHttpException   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 7
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 1

Importance

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

1 Method

Rating   Name   Duplication   Size   Complexity  
A __construct() 0 4 1
1
<?php
2
3
/**
4
 * This file is part of the eZ Publish Kernel package.
5
 *
6
 * @copyright Copyright (C) eZ Systems AS. All rights reserved.
7
 * @license For full copyright and license information view LICENSE file distributed with this source code.
8
 */
9
namespace eZ\Publish\Core\IO\Exception;
10
11
use Exception;
12
use eZ\Publish\Core\Base\Exceptions\NotFoundHttpException;
13
14
class BinaryFileNotFoundHttpException extends NotFoundHttpException
15
{
16
    public function __construct($path, Exception $previous = null)
17
    {
18
        parent::__construct('BinaryFile', $path, $previous);
19
    }
20
}
21