aboutsummaryrefslogtreecommitdiff
path: root/lib/classes/restapi/RouterHalt.php
blob: 8aaae175c2155ea322c8f26e4adee02dd50bb560 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
<?php
namespace RESTAPI;

/**
 * @author     <mlunzena@uos.de>
 * @license    GPL 2 or later
 * @since      Stud.IP 3.0
 * @deprecated Since Stud.IP 5.0. Will be removed in Stud.IP 5.2.
 */
class RouterHalt extends \Exception
{
    public function __construct($response)
    {
        $this->response = $response;
    }
}