Total Complexity | 1 |
Total Lines | 14 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
21 | class StopExecutionException extends \Exception |
||
22 | { |
||
23 | |||
24 | /** |
||
25 | * Script execution terminated message |
||
26 | */ |
||
27 | const EXECUTION_TERMINATED = 'Execution was terminated'; |
||
28 | |||
29 | /** |
||
30 | * @return \Quantum\Exceptions\StopExecutionException |
||
31 | */ |
||
32 | public static function executionTerminated(): StopExecutionException |
||
37 |