24 lines
399 B
PHP

<?php
namespace PayPalHttp;
class HttpException extends IOException
{
/**
* @var statusCode
*/
public $statusCode;
public $headers;
/**
* @param string $response
*/
public function __construct($message, $statusCode, $headers)
{
parent::__construct($message);
$this->statusCode = $statusCode;
$this->headers = $headers;
}
}