| 1 |
<?php |
| 2 |
|
| 3 |
namespace Yoast\WP\SEO\Exceptions\Importing; |
| 4 |
|
| 5 |
use Exception; |
| 6 |
|
| 7 |
/** |
| 8 |
* Class Aioseo_Validation_Exception |
| 9 |
*/ |
| 10 |
class Aioseo_Validation_Exception extends Exception { |
| 11 |
|
| 12 |
/** |
| 13 |
* Exception that is thrown whenever validation of the |
| 14 |
* AIOSEO data structure has failed. |
| 15 |
*/ |
| 16 |
public function __construct() { |
| 17 |
parent::__construct( \esc_html__( 'The validation of the AIOSEO data structure has failed.', 'wordpress-seo' ) ); |
| 18 |
} |
| 19 |
} |
| 20 |
|