mirror of
https://github.com/the-djmaze/snappymail.git
synced 2025-01-11 01:07:39 +08:00
32 lines
693 B
PHP
32 lines
693 B
PHP
<?php
|
|
|
|
namespace GuzzleHttp\Exception;
|
|
|
|
use GuzzleHttp\Message\ResponseInterface;
|
|
|
|
/**
|
|
* Exception when a client is unable to parse the response body as XML or JSON
|
|
*/
|
|
class ParseException extends TransferException
|
|
{
|
|
/** @var ResponseInterface */
|
|
private $response;
|
|
|
|
public function __construct(
|
|
$message = '',
|
|
ResponseInterface $response = null,
|
|
\Exception $previous = null
|
|
) {
|
|
parent::__construct($message, 0, $previous);
|
|
$this->response = $response;
|
|
}
|
|
/**
|
|
* Get the associated response
|
|
*
|
|
* @return ResponseInterface|null
|
|
*/
|
|
public function getResponse()
|
|
{
|
|
return $this->response;
|
|
}
|
|
}
|