friendship ended with social-app. php is my new best friend
1<?php 2/** 3 * Class InvalidAccessTokenException 4 * 5 * @created 18.03.2024 6 * @author smiley <smiley@chillerlan.net> 7 * @copyright 2024 smiley 8 * @license MIT 9 */ 10declare(strict_types=1); 11 12namespace chillerlan\OAuth\Core; 13 14/** 15 * Thrown when an access token is expired and cannot be refreshed 16 * 17 * @see \chillerlan\OAuth\Core\TokenRefresh 18 * @see \chillerlan\OAuth\Core\OAuth1Provider::getRequestAuthorization() 19 * @see \chillerlan\OAuth\Core\OAuth2Provider::getRequestAuthorization() 20 */ 21class InvalidAccessTokenException extends UnauthorizedAccessException{ 22 23}