Completed
Push — ezp26352-skip_csrf_check_on_re... ( 19f37a )
by
unknown
36:29
created

MultipleValueLoadException::__construct()   A

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 0
dl 0
loc 4
rs 10
c 0
b 0
f 0
1
<?php
2
/**
3
 * @copyright Copyright (C) eZ Systems AS. All rights reserved.
4
 * @license For full copyright and license information view LICENSE file distributed with this source code.
5
 */
6
namespace eZ\Publish\Core\REST\Server\Output\PathExpansion\Exceptions;
7
8
use Exception;
9
10
/**
11
 * Thrown when an embedded value was already loaded.
12
 */
13
class MultipleValueLoadException extends Exception
14
{
15
    public function __construct()
16
    {
17
        parent::__construct('Value was already loaded');
18
    }
19
}
20