parent
8329f5de22
commit
30add41572
|
@ -3,6 +3,7 @@
|
||||||
|
|
||||||
use Icinga\Application\Icinga;
|
use Icinga\Application\Icinga;
|
||||||
use Icinga\Application\Logger;
|
use Icinga\Application\Logger;
|
||||||
|
use Icinga\Exception\Http\HttpBadRequestException;
|
||||||
use Icinga\Exception\Http\HttpMethodNotAllowedException;
|
use Icinga\Exception\Http\HttpMethodNotAllowedException;
|
||||||
use Icinga\Exception\Http\HttpNotFoundException;
|
use Icinga\Exception\Http\HttpNotFoundException;
|
||||||
use Icinga\Exception\MissingParameterException;
|
use Icinga\Exception\MissingParameterException;
|
||||||
|
@ -64,6 +65,9 @@ class ErrorController extends ActionController
|
||||||
'Missing parameter ' . $exception->getParameter()
|
'Missing parameter ' . $exception->getParameter()
|
||||||
);
|
);
|
||||||
break;
|
break;
|
||||||
|
case $exception instanceof HttpBadRequestException:
|
||||||
|
$this->getResponse()->setHttpResponseCode(400);
|
||||||
|
break;
|
||||||
case $exception instanceof SecurityException:
|
case $exception instanceof SecurityException:
|
||||||
$this->getResponse()->setHttpResponseCode(403);
|
$this->getResponse()->setHttpResponseCode(403);
|
||||||
break;
|
break;
|
||||||
|
|
Loading…
Reference in New Issue