wp2static/library/Dropbox/Exception/OverQuota.php
2017-03-12 17:54:22 +13:00

16 lines
246 B
PHP

<?php
namespace Dropbox;
/**
* User is over Dropbox storage quota.
*/
final class Exception_OverQuota extends Exception
{
/**
* @internal
*/
function __construct($message)
{
parent::__construct($message);
}
}