1<?php declare(strict_types=1);
2
3namespace PhpParser\ErrorHandler;
4
5use PhpParser\Error;
6use 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 */
13class Throwing implements ErrorHandler {
14    public function handleError(Error $error): void {
15        throw $error;
16    }
17}
18