Completed
Push — master ( 2f74f3...29426d )
by Samson
02:55
created

NotGeezArgumentException::__construct()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 6
Code Lines 3

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
dl 0
loc 6
rs 9.4285
c 0
b 0
f 0
cc 1
eloc 3
nc 1
nop 1
1
<?php
2
3
namespace Geezify\Exception;
4
5
use InvalidArgumentException;
6
7
/**
8
 * Class NotGeezArgumentException.
9
 *
10
 * @author Sam As End <4sam21{at}gmail.com>
11
 */
12
class NotGeezArgumentException extends InvalidArgumentException
13
{
14
    public function __construct($argument)
15
    {
16
        parent::__construct(
17
            "Not a geez number!, {$argument} given."
18
        );
19
    }
20
}
21