Initial commit
This commit is contained in:
commit
73c6b816c0
716 changed files with 170045 additions and 0 deletions
20
kirby/src/Exception/NotFoundException.php
Normal file
20
kirby/src/Exception/NotFoundException.php
Normal file
|
@ -0,0 +1,20 @@
|
|||
<?php
|
||||
|
||||
namespace Kirby\Exception;
|
||||
|
||||
/**
|
||||
* NotFoundException
|
||||
* Thrown when something was not found
|
||||
*
|
||||
* @package Kirby Exception
|
||||
* @author Nico Hoffmann <nico@getkirby.com>
|
||||
* @link https://getkirby.com
|
||||
* @copyright Bastian Allgeier
|
||||
* @license https://opensource.org/licenses/MIT
|
||||
*/
|
||||
class NotFoundException extends Exception
|
||||
{
|
||||
protected static $defaultKey = 'notFound';
|
||||
protected static $defaultFallback = 'Not found';
|
||||
protected static $defaultHttpCode = 404;
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue