File "IOException.php"
Full Path: /home/cananyalcin/public_html/core/lib/paypal/paypal/paypalhttp/lib/PayPalHttp/IOException.php
File size: 242 bytes
MIME-type: text/x-php
Charset: utf-8
<?php
namespace PayPalHttp;
use Throwable;
class IOException extends \Exception
{
public function __construct($message = "", $code = 0, Throwable $previous = null)
{
parent::__construct($message, $code, $previous);
}
}