PATH:
home
/
fengshp
/
www
/
wp-content
/
plugins
/
wordpress-seo
/
src
/
dashboard
/
domain
/
time-based-seo-metrics
<?php // phpcs:disable Yoast.NamingConventions.NamespaceName.TooLong -- Needed in the folder structure. namespace Yoast\WP\SEO\Dashboard\Domain\Time_Based_SEO_Metrics; use Exception; /** * Exception for when the repository for the given widget are not found. */ class Repository_Not_Found_Exception extends Exception { /** * Constructor of the exception. */ public function __construct() { parent::__construct( 'Repository not found', 404 ); } }
[+]
..
[-] repository-not-found-exception.php
[edit]
[-] data-source-not-available-exception.php
[edit]