InvalidTokenException.php 319 B

123456789101112131415161718
  1. <?php
  2. namespace Overtrue\Socialite\Exceptions;
  3. use JetBrains\PhpStorm\Pure;
  4. class InvalidTokenException extends Exception
  5. {
  6. public string $token;
  7. #[Pure]
  8. public function __construct(string $message, string $token)
  9. {
  10. parent::__construct($message, -1);
  11. $this->token = $token;
  12. }
  13. }