aboutsummaryrefslogtreecommitdiff
path: root/lib/classes/restapi/RouterHalt.php
blob: 55a2ca1fbfddce659dba84cb175d045b6769ce58 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
<?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 6.0.
 */
class RouterHalt extends \Exception
{
    public $response;

    public function __construct($response)
    {
        parent::__construct();
        $this->response = $response;
    }
}