Completed
Push — 6.0 ( 92cb73...aa2689 )
by Ruud
51:41 queued 26:19
created

NoNodeTranslationException::__construct()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 4

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
dl 0
loc 4
rs 10
c 0
b 0
f 0
cc 1
nc 1
nop 3
1
<?php
2
3
namespace Kunstmaan\NodeBundle\Exception;
4
5
use Throwable;
6
7
class NoNodeTranslationException extends \Exception
8
{
9
    /**
10
     * NoNodeTranslationException constructor.
11
     * @param string $message
12
     * @param int $code
13
     * @param Throwable|null $previous
14
     */
15
    public function __construct($message = "No Node Translation found", $code = 0, Throwable $previous = null)
16
    {
17
        parent::__construct($message, $code, $previous);
18
    }
19
}
20
21