Yoast\WP\SEO\Task_List\Domain\Exceptions

Task_Not_Found_Exception{}Yoast 1.0└─ Exception

Exception for when the task is not found.

Хуков нет.

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

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

Методы

  1. public __construct()

Код Task_Not_Found_Exception{} Yoast 28.3

class Task_Not_Found_Exception extends Exception {

	/**
	 * Constructor of the exception.
	 */
	public function __construct() {
		parent::__construct( 'Task not found', 404 );
	}
}