| 1: | <?php declare(strict_types=1); |
| 2: | |
| 3: | namespace PhpParser\ErrorHandler; |
| 4: | |
| 5: | use PhpParser\Error; |
| 6: | use PhpParser\ErrorHandler; |
| 7: | |
| 8: | /** |
| 9: | * Error handler that handles all errors by throwing them. |
| 10: | * |
| 11: | * This is the default strategy used by all components. |
| 12: | */ |
| 13: | class Throwing implements ErrorHandler |
| 14: | { |
| 15: | public function handleError(Error $error) { |
| 16: | throw $error; |
| 17: | } |
| 18: | } |
| 19: |