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 5.2. */ class RouterHalt extends \Exception { public $response; public function __construct($response) { parent::__construct(); $this->response = $response; } }