• File: aioseo-validation-exception.php
  • Full Path: /home/satp2352/public_html/multitasjayautama.com/01/src/exceptions/importing/aioseo-validation-exception.php
  • Date Modified: 05/22/2026 6:32 AM
  • File size: 427 bytes
  • MIME-type: text/x-php
  • Charset: utf-8
<?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' ) );
	}
}