|
1
|
<?php |
|
2
|
|
|
3
|
namespace PayPalHttp; |
|
4
|
|
|
5
|
use Throwable; |
|
6
|
|
|
7
|
class IOException extends \Exception |
|
8
|
{ |
|
9
|
public function __construct($message = "", $code = 0, Throwable $previous = null) |
|
10
|
{ |
|
11
|
parent::__construct($message, $code, $previous); |
|
12
|
} |
|
13
|
} |
|
14
|
|