Files
kupshop/bundles/KupShop/UserOauthBundle/Security/ClientIDNotFoundException.php
2025-08-02 16:30:27 +02:00

13 lines
265 B
PHP

<?php
namespace KupShop\UserOauthBundle\Security;
use Symfony\Component\Security\Core\Exception\UserNotFoundException;
/**
* Throw this exception if clientID is not found but email is known.
*/
class ClientIDNotFoundException extends UserNotFoundException
{
}