|
1
|
<?php |
|
2
|
namespace Dropbox; |
|
3
|
|
|
4
|
/** |
|
5
|
* There was a network I/O error when making the request.
|
|
6
|
*/ |
|
7
|
final class Exception_NetworkIO extends Exception |
|
8
|
{ |
|
9
|
/** |
|
10
|
* @internal |
|
11
|
*/ |
|
12
|
function __construct($message, $cause = null) |
|
13
|
{ |
|
14
|
parent::__construct($message, $cause); |
|
15
|
} |
|
16
|
} |
|
17
|
|