You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
429 B
20 lines
429 B
1 year ago
|
<?php
|
||
|
|
||
|
namespace Stripe\Exception\OAuth;
|
||
|
|
||
|
/**
|
||
|
* Implements properties and methods common to all (non-SPL) Stripe OAuth
|
||
|
* exceptions.
|
||
|
*/
|
||
|
abstract class OAuthErrorException extends \Stripe\Exception\ApiErrorException
|
||
|
{
|
||
|
protected function constructErrorObject()
|
||
|
{
|
||
|
if (null === $this->jsonBody) {
|
||
|
return null;
|
||
|
}
|
||
|
|
||
|
return \Stripe\OAuthErrorObject::constructFrom($this->jsonBody);
|
||
|
}
|
||
|
}
|