InvalidGrant.php 359 B

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