View file ProForum/Files/application/app/Http/Controllers/Gateway/PaypalSdk/PayPalHttp/IOException.php

File size: 281B
<?php

namespace App\Http\Controllers\Gateway\PaypalSdk\PayPalHttp;

use Throwable;

class IOException extends \Exception
{
    public function __construct($message = "", $code = 0, Throwable $previous = null)
    {
        parent::__construct($message, $code, $previous);
    }
}