mirror of
https://gh.wpcy.net/https://github.com/elementor/one-click-accessibility.git
synced 2026-04-21 05:27:17 +08:00
14 lines
234 B
PHP
14 lines
234 B
PHP
<?php
|
|
|
|
namespace EA11y\Modules\Remediation\Exceptions;
|
|
|
|
if ( ! defined( 'ABSPATH' ) ) {
|
|
exit; // Exit if accessed directly
|
|
}
|
|
|
|
/**
|
|
* Class Missing_URL
|
|
*/
|
|
class Missing_URL extends \Exception {
|
|
protected $message = 'Missing URL';
|
|
}
|