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: