1 | <?php |
||
21 | class FormulaEngineException extends Exception |
||
22 | { |
||
23 | /** |
||
24 | * @var string |
||
25 | */ |
||
26 | private $formula; |
||
27 | |||
28 | 1 | public static function fromException(Throwable $previous, string $formula, string $message = null): FormulaEngineException |
|
45 | |||
46 | 1 | public static function create(string $formula, string $message) |
|
56 | |||
57 | public function getFormula(): ?string |
||
61 | } |
||
62 |