mirror of
https://github.com/standardebooks/web.git
synced 2025-07-05 22:30:30 -04:00
6 lines
143 B
PHP
6 lines
143 B
PHP
<?
|
|
namespace Exceptions;
|
|
|
|
class UserExistsException extends SeException{
|
|
protected $message = 'This email already exists in the database.';
|
|
}
|