| 1 | <?php namespace Arcanedev\Stripe\Exceptions; |
||
| 11 | class ApiException extends StripeException |
||
| 12 | { |
||
| 13 | /* ------------------------------------------------------------------------------------------------ |
||
| 14 | | Constructor |
||
| 15 | | ------------------------------------------------------------------------------------------------ |
||
| 16 | */ |
||
| 17 | /** |
||
| 18 | * API Exception Constructor. |
||
| 19 | * |
||
| 20 | * @param string $message |
||
| 21 | * @param int $code |
||
| 22 | * @param string|null $type |
||
| 23 | * @param string|null $stripeCode |
||
| 24 | * @param string|null $httpBody |
||
| 25 | * @param array $jsonBody |
||
| 26 | * @param array $params |
||
| 27 | */ |
||
| 28 | 84 | public function __construct( |
|
| 47 | } |
||
| 48 |