Completed
Branch feature/0.7.0 (0808a6)
by Ryuichi
58:46 queued 13:49
created

InvalidArgumentException   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 10
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 1

Importance

Changes 0
Metric Value
dl 0
loc 10
rs 10
c 0
b 0
f 0
wmc 1
lcom 0
cbo 1

1 Method

Rating   Name   Duplication   Size   Complexity  
A __construct() 0 4 1
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