InvalidClientException.php
11 lines
| 1 | <?php |
| 2 | |
| 3 | namespace AmeliaVendor\Stripe\Exception\OAuth; |
| 4 | |
| 5 | /** |
| 6 | * InvalidClientException is thrown when the client_id does not belong to you, |
| 7 | * the stripe_user_id does not exist or is not connected to your application, |
| 8 | * or the API key mode (live or test mode) does not match the client_id mode. |
| 9 | */ |
| 10 | class InvalidClientException extends OAuthErrorException {} |
| 11 |