summaryrefslogtreecommitdiffstats
path: root/library/Icinga/Exception/Http/HttpBadRequestException.php
blob: 004eabd0680c69ca432d0b2d59e88ff383763e1b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
<?php
/* Icinga Web 2 | (c) 2015 Icinga Development Team | GPLv2+ */

namespace Icinga\Exception\Http;

/**
 * Exception thrown for sending a HTTP 400 response w/ a custom message
 */
class HttpBadRequestException extends BaseHttpException
{
    protected $statusCode = 400;
}