web/lib/Exceptions/UserExistsException.php
2023-07-14 09:36:10 -05:00

6 lines
144 B
PHP

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