PATH:
home
/
letacommog
/
laindinois
/
OLD
/
wp-content
/
plugins
/
downtown-rest-api
/
inc
/
stripe-php
/
lib
/
Error
/
OAuth
<?php namespace Stripe\Error\OAuth; class OAuthBase extends \Stripe\Error\Base { public function __construct( $code, $description, $httpStatus = null, $httpBody = null, $jsonBody = null, $httpHeaders = null ) { parent::__construct($description, $httpStatus, $httpBody, $jsonBody, $httpHeaders); $this->code = $code; } public function getErrorCode() { return $this->code; } }
[+]
..
[-] InvalidRequest.php
[edit]
[-] InvalidClient.php
[edit]
[-] InvalidScope.php
[edit]
[-] InvalidGrant.php
[edit]
[-] UnsupportedGrantType.php
[edit]
[-] OAuthBase.php
[edit]
[-] UnsupportedResponseType.php
[edit]