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