2015-05-21 17:18:29 +02:00
|
|
|
<?php
|
2016-02-08 15:41:00 +01:00
|
|
|
/* Icinga Web 2 | (c) 2015 Icinga Development Team | GPLv2+ */
|
2015-05-21 17:18:29 +02:00
|
|
|
|
|
|
|
namespace Icinga\Exception\Http;
|
|
|
|
|
|
|
|
use Icinga\Exception\IcingaException;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Base class for HTTP exceptions
|
|
|
|
*/
|
|
|
|
abstract class HttpException extends IcingaException
|
|
|
|
{
|
|
|
|
|
|
|
|
}
|