File "RetryLater.php"
Full Path: /var/www/bvnghean.vn/save_bvnghean.vn/wp-content/plugins/backupbuddy/destinations/dropbox2/lib/Dropbox/Exception/RetryLater.php
File size: 316 bytes
MIME-type: text/x-php
Charset: utf-8
<?php
namespace Dropbox;
/**
* The Dropbox server said it couldn't fulfil our request right now, but that we should try
* again later.
*/
final class Exception_RetryLater extends Exception
{
/**
* @internal
*/
function __construct($message)
{
parent::__construct($message);
}
}