c5a76dd0cf9a23540ed94f1a35fdcb83bf6c6119
[yaffs-website] / vendor / nikic / php-parser / lib / PhpParser / ErrorHandler / Throwing.php
1 <?php
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 }