2015-08-24 15:59:05 +02:00
|
|
|
<?php
|
2016-02-08 15:41:00 +01:00
|
|
|
/* Icinga Web 2 | (c) 2015 Icinga Development Team | GPLv2+ */
|
2015-08-24 15:59:05 +02:00
|
|
|
|
|
|
|
namespace Icinga\Exception\Http;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Exception thrown for sending a HTTP 400 response w/ a custom message
|
|
|
|
*/
|
2017-07-05 06:26:58 +02:00
|
|
|
class HttpBadRequestException extends BaseHttpException
|
2015-08-24 15:59:05 +02:00
|
|
|
{
|
2017-07-05 06:26:58 +02:00
|
|
|
protected $statusCode = 400;
|
2015-08-24 15:59:05 +02:00
|
|
|
}
|