web/lib/Exceptions/DuplicateDatabaseKeyException.php
2024-05-10 23:38:57 -05:00

7 lines
207 B
PHP

<?
namespace Exceptions;
class DuplicateDatabaseKeyException extends AppException{
/** @var string $message */
protected $message = 'An attempted row insertion has violated the database unique index.';
}