geoproject-app/public/kirby/src/Exception/ErrorPageException.php
2025-11-24 14:01:48 +01:00

20 lines
509 B
PHP

<?php
namespace Kirby\Exception;
/**
* Thrown to trigger the CMS error page
*
* @package Kirby Exception
* @author Lukas Bestle <lukas@getkirby.com>
* @link https://getkirby.com
* @copyright Bastian Allgeier
* @license https://opensource.org/licenses/MIT
* @since 3.3.0
*/
class ErrorPageException extends Exception
{
protected static string $defaultKey = 'errorPage';
protected static string $defaultFallback = 'Triggered error page';
protected static int $defaultHttpCode = 404;
}