for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
declare(strict_types=1);
namespace Damax\Bundle\ApiAuthBundle\Security\ApiKey;
use Symfony\Component\Security\Core\Exception\AuthenticationException;
final class InvalidApiKey extends AuthenticationException
{
public function getMessageKey(): string
return 'Invalid api key.';
}