| 1 |
<?php |
| 2 |
|
| 3 |
namespace Stripe\Exception\OAuth; |
| 4 |
|
| 5 |
/** |
| 6 |
* InvalidGrantException is thrown when a specified code doesn't exist, is |
| 7 |
* expired, has been used, or doesn't belong to you; a refresh token doesn't |
| 8 |
* exist, or doesn't belong to you; or if an API key's mode (live or test) |
| 9 |
* doesn't match the mode of a code or refresh token. |
| 10 |
*/ |
| 11 |
class InvalidGrantException extends OAuthErrorException |
| 12 |
{ |
| 13 |
} |
| 14 |
|