lib: Add HttpBadRequestException

refs #9606
This commit is contained in:
Eric Lippmann 2015-08-24 15:59:05 +02:00
parent a20eef50e1
commit 8329f5de22
1 changed files with 11 additions and 0 deletions

View File

@ -0,0 +1,11 @@
<?php
namespace Icinga\Exception\Http;
/**
* Exception thrown for sending a HTTP 400 response w/ a custom message
*/
class HttpBadRequestException extends HttpException
{
}