mirror of
https://ghproxy.net/https://github.com/elementor/one-click-accessibility.git
synced 2026-07-23 12:37:39 +08:00
13 lines
217 B
PHP
13 lines
217 B
PHP
<?php
|
|
|
|
namespace EA11y\Classes\Exceptions;
|
|
|
|
use Exception;
|
|
|
|
if ( ! defined( 'ABSPATH' ) ) {
|
|
exit; // Exit if accessed directly.
|
|
}
|
|
|
|
class Quota_API_Error extends Exception {
|
|
protected $message = 'Quota API error';
|
|
}
|