mirror of
https://gh.wpcy.net/https://github.com/elementor/one-click-accessibility.git
synced 2026-04-21 08:52:46 +08:00
* Initial refactor commit
* ✅ Added build and tests CI/CD
* PR Rejects
* Rejects leftover
18 lines
550 B
PHP
18 lines
550 B
PHP
<?php
|
|
|
|
namespace EA11y\Classes\Database\Exceptions;
|
|
|
|
if ( ! defined( 'ABSPATH' ) ) {
|
|
exit; // Exit if accessed directly
|
|
}
|
|
|
|
/**
|
|
* Class Missing_Table_Exception
|
|
*
|
|
* represent the exception thrown when the Entry's get_helper_class() function is not properly overridden
|
|
* to return the Table-derivative class which represents the Entry's database representation.
|
|
*/
|
|
class Missing_Table_Exception extends \Exception {
|
|
protected $message = 'You must provide a PlatformCommon\Database\Table in extending class';
|
|
protected $code = 'missing_table';
|
|
}
|