Total Complexity | 2 |
Total Lines | 26 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
9 | class InvalidRequestException extends ApiErrorException |
||
10 | { |
||
11 | /** |
||
12 | * Creates a new InvalidRequestException exception. |
||
13 | * |
||
14 | * @param string $message the exception message |
||
15 | * @param null|int $httpStatus the HTTP status code |
||
16 | * @param null|string $httpBody the HTTP body as a string |
||
17 | * @param null|array $jsonBody the JSON deserialized body |
||
18 | * @param null|array|\bSecure\Util\CaseInsensitiveArray $httpHeaders the HTTP headers array |
||
19 | * @param null|string $code the bSecure error code |
||
20 | * |
||
21 | * @return InvalidRequestException |
||
22 | */ |
||
23 | public static function factory( |
||
35 | } |
||
36 | } |