Conditions | 1 |
Paths | 1 |
Total Lines | 13 |
Lines | 0 |
Ratio | 0 % |
Tests | 6 |
CRAP Score | 1 |
Changes | 0 |
1 | <?php |
||
43 | 1 | public function __construct( |
|
44 | Enum $exceptionType, |
||
45 | string $message = "", |
||
46 | string $suspect = "", |
||
47 | string $help = "", |
||
48 | int $code = 0, |
||
49 | Throwable $previous = null |
||
50 | ) { |
||
51 | 1 | parent::__construct($message, $code, $previous); |
|
52 | 1 | $this->type = $exceptionType; |
|
53 | 1 | $this->suspect = $suspect; |
|
54 | 1 | $this->help = $help; |
|
55 | 1 | } |
|
56 | |||
82 |