lib: Add HttpException as base class for HTTP exceptions

refs #6281
This commit is contained in:
Eric Lippmann 2015-05-21 17:18:29 +02:00
parent 8f42d7a1d3
commit fcd7aaef87
1 changed files with 13 additions and 0 deletions

View File

@ -0,0 +1,13 @@
<?php
namespace Icinga\Exception\Http;
use Icinga\Exception\IcingaException;
/**
* Base class for HTTP exceptions
*/
abstract class HttpException extends IcingaException
{
}