BadRequest.php
5 years ago
BadResponse.php
5 years ago
BadResponseCode.php
5 years ago
InvalidAccessToken.php
5 years ago
NetworkIO.php
5 years ago
ProtocolError.php
5 years ago
RetryLater.php
5 years ago
ServerError.php
5 years ago
ServerError.php
16 lines
| 1 | <?php |
| 2 | namespace Dropbox; |
| 3 | |
| 4 | /** |
| 5 | * The Dropbox server said that there was an internal error when trying to fulfil our request. |
| 6 | * This usually corresponds to an HTTP 500 response. |
| 7 | */ |
| 8 | final class Exception_ServerError extends Exception |
| 9 | { |
| 10 | /** @internal */ |
| 11 | function __construct($message = "") |
| 12 | { |
| 13 | parent::__construct($message); |
| 14 | } |
| 15 | } |
| 16 |