The start of something beautiful
This commit is contained in:
@@ -0,0 +1,32 @@
|
||||
<?php
|
||||
|
||||
namespace Lexik\Bundle\JWTAuthenticationBundle\Exception;
|
||||
|
||||
/**
|
||||
* Base class for exceptions thrown during JWT creation/loading.
|
||||
*
|
||||
* @author Robin Chalas <robin.chalas@gmail.com>
|
||||
*/
|
||||
class JWTFailureException extends \Exception
|
||||
{
|
||||
private string $reason;
|
||||
private ?array $payload;
|
||||
|
||||
public function __construct(string $reason, string $message, \Throwable $previous = null, array $payload = null)
|
||||
{
|
||||
$this->reason = $reason;
|
||||
$this->payload = $payload;
|
||||
|
||||
parent::__construct($message, 0, $previous);
|
||||
}
|
||||
|
||||
public function getReason(): string
|
||||
{
|
||||
return $this->reason;
|
||||
}
|
||||
|
||||
public function getPayload(): ?array
|
||||
{
|
||||
return $this->payload;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user