# worker/4.0.1/src/Dropbox/Exception/ServerError.php

ManageWP Worker, version 4.0.1. 15 lines.

- Page: https://pluginprobe.com/plugins/worker/4.0.1/code/src/Dropbox/Exception/ServerError.php
- Raw: https://pluginprobe.com/plugins/worker/4.0.1/raw/src/Dropbox/Exception/ServerError.php
- Modified: 2015-01-18T15:26:34+00:00

Line numbers below start at 1. Link to a line or a range by appending a fragment to the
page URL, for example `https://pluginprobe.com/plugins/worker/4.0.1/code/src/Dropbox/Exception/ServerError.php#L10-L20`.

```php
<?php

/**
 * The Dropbox server said that there was an internal error when trying to fulfil our request.
 * This usually corresponds to an HTTP 500 response.
 */
final class Dropbox_Exception_ServerError extends Dropbox_Exception
{
    /** @internal */
    public function __construct($message = "")
    {
        parent::__construct($message);
    }
}

```
