Files
site-interpromos/resources/library/exceptions.php
2022-10-11 16:49:32 +02:00

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
{
}