Create New Item
Item Type
File
Folder
Item Name
Search file in folder and subfolders...
Are you sure want to rename?
haspicol
/
wp-content
/
plugins
/
wordpress-seo
/
src
/
dashboard
/
domain
/
score-results
:
score-results-not-found-exception.php
Advanced Search
Upload
New Item
Settings
Back
Back Up
Advanced Editor
Save
<?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 ); } }