Create New Item
Item Type
File
Folder
Item Name
Search file in folder and subfolders...
Are you sure want to rename?
unsatisfiableness
/
core
/
lib
/
paypal
/
paypal
/
paypalhttp
/
lib
/
PayPalHttp
:
HttpException.php
Advanced Search
Upload
New Item
Settings
Back
Back Up
Advanced Editor
Save
<?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; } }