Completed
Branch feature/0.7.0 (0808a6)
by Ryuichi
119:02 queued 74:09
created

InvalidArgumentException::__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 1
dl 0
loc 4
rs 10
c 0
b 0
f 0
1
<?php
2
namespace WebStream\Exception\Extend;
3
4
use WebStream\Exception\SystemException;
5
6
/**
7
 * InvalidArgumentException
8
 * @author Ryuichi TANAKA.
9
 * @since 2014/05/06
10
 * @version 0.4
11
 */
12
class InvalidArgumentException extends SystemException
13
{
14
    /**
15
     * constructor
16
     */
17
    public function __construct($message = null)
18
    {
19
        parent::__construct($message, 500, $this);
20
    }
21
}
22