blob: ca92e24426dcfa1f9105de1e283daf7f4cc78617 (
plain)
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
|
<?php
namespace SparkPost;
use Http\Client\Exception\HttpException as HttpException;
class SparkPostException extends \Exception
{
/**
* Variable to hold json decoded body from http response.
*/
private $body = null;
/**
* Sets up the custom exception and copies over original exception values.
*
* @param Exception $exception - the exception to be wrapped
*/
public function __construct(\Exception $exception)
{
$message = $exception->getMessage();
$code = $exception->getCode();
if ($exception instanceof HttpException) {
$message = $exception->getResponse()->getBody()->__toString();
$this->body = json_decode($message, true);
$code = $exception->getResponse()->getStatusCode();
}
parent::__construct($message, $code, $exception->getPrevious());
}
/**
* Returns the body.
*
* @return array $body - the json decoded body from the http response
*/
public function getBody()
{
return $this->body;
}
}
|