| 1 | <?php declare(strict_types=1); |
||
| 12 | class Exception extends \Exception |
||
| 13 | { |
||
| 14 | private static $recipeFile; |
||
| 15 | private $filename; |
||
| 16 | private $lineNumber; |
||
| 17 | |||
| 18 | public function __construct($message = "", $code = 0, Throwable $previous = null) |
||
| 32 | |||
| 33 | 10 | public static function await() |
|
| 40 | |||
| 41 | public function getFilename() |
||
| 45 | |||
| 46 | public function getLineNumber() |
||
| 50 | } |
||
| 51 | |||
| 52 |