11 lines
235 B
PHP
Executable File
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;
|
|
}
|