InvalidRequestException.php 239 B

1234567891011
  1. <?php
  2. namespace Stripe\Exception\OAuth;
  3. /**
  4. * InvalidRequestException is thrown when a code, refresh token, or grant
  5. * type parameter is not provided, but was required.
  6. */
  7. class InvalidRequestException extends OAuthErrorException
  8. {
  9. }