ClassNotFoundException   A
last analyzed

Complexity

Total Complexity 2

Size/Duplication

Total Lines 16
Duplicated Lines 0 %

Test Coverage

Coverage 0%

Importance

Changes 1
Bugs 0 Features 0
Metric Value
eloc 3
c 1
b 0
f 0
dl 0
loc 16
ccs 0
cts 4
cp 0
rs 10
wmc 2

2 Methods

Rating   Name   Duplication   Size   Complexity  
A __construct() 0 3 1
A __call() 0 3 1
1
<?php
2
3
namespace WebStream\Exception\Extend;
4
5
use WebStream\Exception\ApplicationException;
6
7
/**
8
 * ClassNotFoundException
9
 * @author Ryuichi TANAKA.
10
 * @since 2013/12/14
11
 * @version 0.4
12
 */
13
class ClassNotFoundException extends ApplicationException
14
{
15
    /**
16
     * constructor
17
     */
18
    public function __construct($message = null)
19
    {
20
        parent::__construct($message, 500, $this);
21
    }
22
23
    /**
24
     * method missing
25
     */
26
    public function __call($name, $arguments)
27
    {
28
        throw $this;
29
    }
30
}
31