1: <?php
2: namespace Dropbox;
3:
4: /**
5: * If, when loading a serialized {@link RequestToken} or {@link AccessToken}, the input string is
6: * malformed, this exception will be thrown.
7: */
8: final class DeserializeException extends \Exception
9: {
10: /**
11: * @param string $message
12: *
13: * @internal
14: */
15: function __construct($message)
16: {
17: parent::__construct($message);
18: }
19: }
20: