Runtime   A
last analyzed

Complexity

Total Complexity 1

Size/Duplication

Total Lines 11
Duplicated Lines 0 %

Importance

Changes 1
Bugs 0 Features 0
Metric Value
eloc 2
c 1
b 0
f 0
dl 0
loc 11
rs 10
wmc 1

1 Method

Rating   Name   Duplication   Size   Complexity  
A __construct() 0 3 1
1
<?php
2
namespace UAPAY\Exception;
3
4
use UAPAY\Log as Log;
5
6
class Runtime extends General implements EInterface
7
{
8
    /**
9
     *      Constructor
10
     *
11
     *      @param string $message
12
     *      @param \Throwable $previous
13
     */
14
    public function __construct($message, \Exception $previous = null)
15
    {
16
        parent::__construct($message, $previous, true);
17
    }
18
}
19