LocaleException::__construct()   A
last analyzed

Complexity

Conditions 2
Paths 2

Size

Total Lines 8
Code Lines 4

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
dl 0
loc 8
c 0
b 0
f 0
rs 9.4285
cc 2
eloc 4
nc 2
nop 1
1
<?php
2
3
namespace Alpixel\Bundle\MenuBundle\Exception;
4
5
class LocaleException extends \InvalidArgumentException
6
{
7
    public function __construct($message = null)
8
    {
9
        if ($message === null) {
10
            $message = 'The parameter must be a non empty string';
11
        }
12
13
        parent::__construct($message);
14
    }
15
}
16