Files
huangjingfen/pro_v3.5.1/vendor/overtrue/socialite/src/Exceptions/InvalidTokenException.php
panchengyong 7acbf45ff7 new files
2026-03-07 22:29:07 +08:00

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;
}
}