Yoast\WP\SEO\Task_List\Domain\Exceptions
Complete_Sample_Page_Task_Exception{}└─ Exception
Exception for when we can't complete the sample page task.
Хуков нет.
Использование
$Complete_Sample_Page_Task_Exception = new Complete_Sample_Page_Task_Exception(); // use class methods
Методы
- public __construct()
Код Complete_Sample_Page_Task_Exception{} Complete Sample Page Task Exception{} Yoast 27.7
class Complete_Sample_Page_Task_Exception extends Exception {
/**
* Constructor of the exception.
*/
public function __construct() {
parent::__construct( \esc_html__( 'Failed to delete the Sample Page.', 'wordpress-seo' ), 400 );
}
}