1<?php
2namespace ILIAS\UI\Implementation\Crawler\Exception;
3
4/**
5 * A wrapper around the excepiton to simply throw them.
6 */
7class CrawlerExceptionThrower implements CrawlerExceptionHandler
8{
9    protected $exceptions = array();
10
11    /**
12     * @inheritdoc
13     */
14    public function handleException(CrawlerException $ex)
15    {
16        throw $ex;
17    }
18}
19