PATH:
home
/
sarkas88.com
/
public_html
/
wp-content
/
plugins
/
wordpress-seo
/
src
/
task-list
/
domain
/
exceptions
<?php // phpcs:disable Yoast.NamingConventions.NamespaceName.TooLong -- Needed in the folder structure. namespace Yoast\WP\SEO\Task_List\Domain\Exceptions; use Exception; /** * Exception for when we can't complete the llms.txt task. */ class Complete_LLMS_Task_Exception extends Exception { /** * Constructor of the exception. */ public function __construct() { parent::__construct( \esc_html__( 'Failed to enable llms.txt option.', 'wordpress-seo' ), 400 ); } }
[-] invalid-tasks-exception.php
[open]
[-] invalid-post-type-tasks-exception.php
[open]
[-] complete-hello-world-task-exception.php
[open]
[-] task-not-found-exception.php
[open]
[+]
..
[-] complete-llms-task-exception.php
[open]