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: