PATH:
home
/
letacommog
/
winwithd
/
wp-content
/
plugins
/
pms-add-on-stripe
/
libs
/
stripe
/
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->errorCode = $code; } public function getErrorCode() { return $this->errorCode; } }
[+]
..
[-] OAuthBase.php
[edit]
[-] InvalidRequest.php
[edit]
[-] InvalidScope.php
[edit]
[-] UnsupportedResponseType.php
[edit]
[-] InvalidGrant.php
[edit]
[-] InvalidClient.php
[edit]
[-] UnsupportedGrantType.php
[edit]