Yoast\WP\SEO\Tracking\Domain\Exceptions
Invalid_Tracked_Action_Exception{}└─ Exception
Exception for when there's an invalid tracked action.
Хуков нет.
Использование
$Invalid_Tracked_Action_Exception = new Invalid_Tracked_Action_Exception(); // use class methods
Методы
- public __construct()
Код Invalid_Tracked_Action_Exception{} Invalid Tracked Action Exception{} Yoast 26.9
class Invalid_Tracked_Action_Exception extends Exception {
/**
* Constructor of the exception.
*/
public function __construct() {
parent::__construct( 'The tracked action is invalid', 400 );
}
}