Yoast\WP\SEO\Task_List\Domain\Exceptions

Complete_Hello_World_Task_Exception{}Yoast 1.0└─ Exception

Exception for when we can't complete the hello world task.

Хуков нет.

Использование

$Complete_Hello_World_Task_Exception = new Complete_Hello_World_Task_Exception();
// use class methods

Методы

  1. public __construct()

Код Complete_Hello_World_Task_Exception{} Yoast 28.3

class Complete_Hello_World_Task_Exception extends Exception {

	/**
	 * Constructor of the exception.
	 */
	public function __construct() {
		parent::__construct( \esc_html__( 'Failed to delete the Hello World post.', 'wordpress-seo' ), 400 );
	}
}