19 lines
319 B
PHP
19 lines
319 B
PHP
|
<?php
|
||
|
|
||
|
namespace Overtrue\Socialite\Exceptions;
|
||
|
|
||
|
use JetBrains\PhpStorm\Pure;
|
||
|
|
||
|
class InvalidTokenException extends Exception
|
||
|
{
|
||
|
public string $token;
|
||
|
|
||
|
#[Pure]
|
||
|
public function __construct(string $message, string $token)
|
||
|
{
|
||
|
parent::__construct($message, -1);
|
||
|
|
||
|
$this->token = $token;
|
||
|
}
|
||
|
}
|