* * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace Rapsys\UserBundle\Exception; use Symfony\Component\Security\Core\Exception\AccountStatusException; /** * {@inheritdoc} * * UnactivatedException is thrown when the user account is unactivated. */ class UnactivatedException extends AccountStatusException { /** * {@inheritdoc} */ public function getMessageKey(): string { return 'Account is not activated'; } }