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

7 lines
173 B
PHP

<?
namespace Exceptions;
class UserExistsException extends AppException{
/** @var string $message */
protected $message = 'This email already exists in the database.';
}