mirror of
https://gh.wpcy.net/https://github.com/elementor/one-click-accessibility.git
synced 2026-04-21 07:09:20 +08:00
14 lines
242 B
PHP
14 lines
242 B
PHP
<?php
|
|
|
|
namespace EA11y\Modules\Scanner\exceptions;
|
|
|
|
if ( ! defined( 'ABSPATH' ) ) {
|
|
exit; // Exit if accessed directly
|
|
}
|
|
|
|
/**
|
|
* Class Missing_Page_Id
|
|
*/
|
|
class Missing_Page_Id extends \Exception {
|
|
protected $message = 'Missing Page ID';
|
|
}
|