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