Yoast\WP\SEO\Task_List\Domain\Exceptions
Task_Not_Found_Exception{}└─ Exception
Exception for when the task is not found.
Хуков нет.
Использование
$Task_Not_Found_Exception = new Task_Not_Found_Exception(); // use class methods
Методы
- public __construct()
Код Task_Not_Found_Exception{} 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 );
}
}