| 1 | <?php namespace Arcanedev\Stripe\Exceptions; |
||
| 9 | class ApiKeyNotSetException extends AuthenticationException |
||
| 10 | { |
||
| 11 | /* ------------------------------------------------------------------------------------------------ |
||
| 12 | | Constructor |
||
| 13 | | ------------------------------------------------------------------------------------------------ |
||
| 14 | */ |
||
| 15 | /** |
||
| 16 | * API Key Not Set Constructor. |
||
| 17 | * |
||
| 18 | * @param string $message |
||
| 19 | * @param int $code |
||
| 20 | * @param string|null $type |
||
| 21 | * @param string|null $stripeCode |
||
| 22 | * @param string|null $httpBody |
||
| 23 | * @param array $jsonBody |
||
| 24 | * @param array $params |
||
| 25 | * @param array $headers |
||
| 26 | */ |
||
| 27 | 4 | public function __construct( |
|
| 46 | } |
||
| 47 |