1 | <?php declare(strict_types=1); |
||
12 | class Exception extends \Exception |
||
13 | { |
||
14 | private static $taskSourceLocation; |
||
15 | private $taskFilename; |
||
16 | private $taskLineNumber; |
||
17 | |||
18 | public function __construct($message = "", $code = 0, Throwable $previous = null) |
||
32 | |||
33 | public static function setTaskSourceLocation(string $filepath): void |
||
37 | |||
38 | public function getTaskFilename() |
||
42 | |||
43 | public function getTaskLineNumber() |
||
47 | } |
||
48 | |||
49 |