Files
hocusfokus-web/kirby/src/Exception/DuplicateException.php
Bastian Allgeier 01277f79f2 first version
2019-01-13 23:17:34 +01:00

11 lines
235 B
PHP
Executable File

<?php
namespace Kirby\Exception;
class DuplicateException extends Exception
{
protected static $defaultKey = 'duplicate';
protected static $defaultFallback = 'The entry exists';
protected static $defaultHttpCode = 400;
}