forked from pipedrive/client-php
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathAPIException.php
More file actions
88 lines (77 loc) · 1.83 KB
/
APIException.php
File metadata and controls
88 lines (77 loc) · 1.83 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
<?php
/*
* Pipedrive
*
* This file was automatically generated by APIMATIC v2.0 ( https://apimatic.io ).
*/
namespace Pipedrive;
use Exception;
/**
* Class for exceptions when there is a network error, status code error, etc.
*/
class APIException extends Exception
{
/**
* Error message
* @var string
*/
private $errorMessage;
/**
* HTTP context
* @var Http\HttpContext
*/
private $context;
/**
* The HTTP response code from the API request
* @param string $reason the reason for raising an exception
* @param int $responseCode the HTTP response code from the API request
* @param string $responseBody the HTTP response body from the API request
*/
public function __construct($reason, $context)
{
parent::__construct($reason, $context->getResponse()->getStatusCode());
$this->context = $context;
$this->errorMessage = $reason;
if (get_class() != 'APIException') {
$this->unbox();
}
}
/**
* Unbox response into this exception class
*/
public function unbox()
{
}
/**
* The HTTP context from the API request
* @return Http\HttpContext
*/
public function getContext()
{
return $this->context;
}
/**
* The HTTP response code from the API request
* @return int
*/
public function getResponseCode()
{
return $this->context->getResponse()->getStatusCode();
}
/**
* The HTTP response body from the API request
* @return mixed
*/
public function getResponseBody()
{
return $this->context->getResponse()->getRawBody();
}
/**
* The reason for raising an exception
* @return string
*/
public function getReason()
{
return $this->message;
}
}