RuleNotExist   A
last analyzed

Complexity

Total Complexity 1

Size/Duplication

Total Lines 7
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 0

Test Coverage

Coverage 0%

Importance

Changes 0
Metric Value
dl 0
loc 7
ccs 0
cts 4
cp 0
rs 10
c 0
b 0
f 0
wmc 1
lcom 0
cbo 0

1 Method

Rating   Name   Duplication   Size   Complexity  
A __construct() 0 4 1
1
<?php
2
/**
3
 * Created by PhpStorm.
4
 * User: harry
5
 * Date: 2/15/18
6
 * Time: 4:59 PM
7
 */
8
9
namespace PluginSimpleValidate\Exception;
10
11
use Throwable;
12
13
class RuleNotExist extends \Exception
14
{
15
    public function __construct($message = "Rule does not exist", $code = 0, Throwable $previous = null)
16
    {
17
        parent::__construct($message, $code, $previous);
18
    }
19
}