13 lines
265 B
PHP
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
|
|
{
|
|
}
|