1
0
Fork 0
mirror of https://github.com/DanielnetoDotCom/YouPHPTube synced 2025-10-05 02:39:46 +02:00
Oinktube/objects/paypal/paypalhttp/lib/PayPalHttp/HttpException.php
2021-07-06 11:36:23 -03:00

23 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;
}
}