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

BinaryFileNotFoundHttpException::__construct()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 4
Code Lines 2

Duplication

Lines 0
Ratio 0 %

Importance

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