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