2
0
forked from Wavyzz/dolibarr
Files
dolibarr-fork/htdocs/includes/stripe/lib/Error/OAuth/OAuthBase.php
2019-05-03 02:22:27 +02:00

24 lines
484 B
PHP

<?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;
}
}