The start of something beautiful
This commit is contained in:
@@ -0,0 +1,31 @@
|
||||
<?php
|
||||
|
||||
namespace Lexik\Bundle\JWTAuthenticationBundle\Exception;
|
||||
|
||||
use Symfony\Component\Security\Core\Exception\AuthenticationException;
|
||||
|
||||
/**
|
||||
* Missing key in the token payload during authentication.
|
||||
*
|
||||
* @author Robin Chalas <robin.chalas@gmail.com>
|
||||
*/
|
||||
class InvalidPayloadException extends AuthenticationException
|
||||
{
|
||||
private string $invalidKey;
|
||||
|
||||
/**
|
||||
* @param string $invalidKey The key that cannot be found in the payload
|
||||
*/
|
||||
public function __construct(string $invalidKey)
|
||||
{
|
||||
$this->invalidKey = $invalidKey;
|
||||
}
|
||||
|
||||
/**
|
||||
* {@inheritdoc}
|
||||
*/
|
||||
public function getMessageKey(): string
|
||||
{
|
||||
return sprintf('Unable to find key "%s" in the token payload.', $this->invalidKey);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user