Completed
Push — svgpagetools ( d7814e...a24eaf )
by Andreas
05:51
created

FatalException::__construct()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 3
Code Lines 2

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
cc 1
eloc 2
nc 1
nop 3
dl 0
loc 3
rs 10
c 0
b 0
f 0
1
<?php
2
3
namespace dokuwiki\Action\Exception;
4
5
/**
6
 * Class FatalException
7
 *
8
 * A fatal exception during handling the action
9
 *
10
 * Will abort all handling and display some info to the user. The HTTP status code
11
 * can be defined.
12
 *
13
 * @package dokuwiki\Action\Exception
14
 */
15
class FatalException extends \Exception {
16
17
    protected $status;
18
19
    /**
20
     * FatalException constructor.
21
     *
22
     * @param string $message the message to send
23
     * @param int $status the HTTP status to send
24
     * @param null|\Exception $previous previous exception
25
     */
26
    public function __construct($message = 'A fatal error occured', $status = 500, $previous = null) {
27
        parent::__construct($message, $status, $previous);
28
    }
29
}
30