initial commit

This commit is contained in:
isUnknown 2026-01-13 10:21:41 +01:00
commit 5210d78d7d
969 changed files with 223828 additions and 0 deletions

View file

@ -0,0 +1,19 @@
<?php
namespace Kirby\Exception;
/**
* Thrown for invalid requests that can't work out
*
* @package Kirby Exception
* @author Nico Hoffmann <nico@getkirby.com>
* @link https://getkirby.com
* @copyright Bastian Allgeier
* @license https://opensource.org/licenses/MIT
*/
class LogicException extends Exception
{
protected static string $defaultKey = 'logic';
protected static string $defaultFallback = 'This task cannot be finished';
protected static int $defaultHttpCode = 400;
}