?? GreyFile — Mystic File Browser

Current path: home/webdevt/www/demo2/wp-content/plugins/wordpress-seo/src/task-list/domain/exceptions/



?? Go up: /home/webdevt/www/demo2/wp-content/plugins/wordpress-seo/src/task-list/domain

?? Viewing: invalid-tasks-exception.php

<?php

// phpcs:disable Yoast.NamingConventions.NamespaceName.TooLong -- Needed in the folder structure.
namespace Yoast\WP\SEO\Task_List\Domain\Exceptions;

use Exception;

/**
 * Exception for invalid tasks.
 */
class Invalid_Tasks_Exception extends Exception {

	/**
	 * Constructor of the exception.
	 */
	public function __construct() {
		parent::__construct( 'Added invalid task.', 400 );
	}
}


??

??