File "score-results-not-found-exception.php"

Full Path: /home/hathazar/public_html/wp-content/plugins/wordpress-seo/src/dashboard/domain/score-results/score-results-not-found-exception.php
File size: 435 bytes
MIME-type: --
Charset: utf-8

<?php
// phpcs:disable Yoast.NamingConventions.NamespaceName.TooLong -- Needed in the folder structure.
namespace Yoast\WP\SEO\Dashboard\Domain\Score_Results;

use Exception;

/**
 * Exception for when score results are not found.
 */
class Score_Results_Not_Found_Exception extends Exception {

	/**
	 * Constructor of the exception.
	 */
	public function __construct() {
		parent::__construct( 'Score results not found', 500 );
	}
}