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
InvalidAccessToken.php
19 lines
| 1 | <?php |
| 2 | namespace Dropbox; |
| 3 | |
| 4 | /** |
| 5 | * The Dropbox server said that the access token you used is invalid or expired. You should |
| 6 | * probably ask the user to go through the OAuth authorization flow again to get a new access |
| 7 | * token. |
| 8 | */ |
| 9 | final class Exception_InvalidAccessToken extends Exception |
| 10 | { |
| 11 | /** |
| 12 | * @internal |
| 13 | */ |
| 14 | function __construct($message = "") |
| 15 | { |
| 16 | parent::__construct($message); |
| 17 | } |
| 18 | } |
| 19 |