mirror of
https://github.com/appen-isen/site-interpromos.git
synced 2026-03-18 21:40:36 +01:00
22 lines
341 B
PHP
22 lines
341 B
PHP
<?php
|
|
|
|
/**
|
|
* PHP version 8.1.11
|
|
*
|
|
* @author Youn Mélois <youn@melois.dev>
|
|
*/
|
|
|
|
/**
|
|
* This exception is thrown when the authentication failed.
|
|
*/
|
|
class AuthenticationException extends Exception
|
|
{
|
|
}
|
|
|
|
/**
|
|
* This will be thrown when trying to create a user with a duplicate email.
|
|
*/
|
|
class DuplicateEmailException extends Exception
|
|
{
|
|
}
|