mirror of
https://github.com/Dolibarr/dolibarr.git
synced 2025-02-20 13:46:52 +01:00
12 lines
207 B
PHP
12 lines
207 B
PHP
|
|
<?php
|
||
|
|
|
||
|
|
namespace Stripe\Error\OAuth;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* InvalidRequest is raised when a code, refresh token, or grant type
|
||
|
|
* parameter is not provided, but was required.
|
||
|
|
*/
|
||
|
|
class InvalidRequest extends OAuthBase
|
||
|
|
{
|
||
|
|
}
|