# wordpress-seo/18.9/src/exceptions/importing/aioseo-validation-exception.php

Yoast SEO – Advanced SEO with real-time guidance and built-in AI, version 18.9. 20 lines.

- Page: https://pluginprobe.com/plugins/wordpress-seo/18.9/code/src/exceptions/importing/aioseo-validation-exception.php
- Raw: https://pluginprobe.com/plugins/wordpress-seo/18.9/raw/src/exceptions/importing/aioseo-validation-exception.php
- Modified: 2022-03-22T14:19:38+00:00

Line numbers below start at 1. Link to a line or a range by appending a fragment to the
page URL, for example `https://pluginprobe.com/plugins/wordpress-seo/18.9/code/src/exceptions/importing/aioseo-validation-exception.php#L10-L20`.

```php
<?php

namespace Yoast\WP\SEO\Exceptions\Importing;

use Exception;

/**
 * Class Aioseo_Validation_Exception
 */
class Aioseo_Validation_Exception extends Exception {

	/**
	 * Exception that is thrown whenever validation of the
	 * AIOSEO data structure has failed.
	 */
	public function __construct() {
		parent::__construct( \esc_html__( 'The validation of the AIOSEO data structure has failed.', 'wordpress-seo' ) );
	}
}

```
