mirror of
https://ghproxy.net/https://github.com/elementor/wp2static.git
synced 2025-09-01 02:21:16 +08:00
16 lines
246 B
PHP
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);
|
|
}
|
|
}
|