InvalidClientException.php 346 B

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