ActionScheduler_WPCLI_Scheduler_command::print_error()protectedWC 1.0

Convert an exception into a WP CLI error.

Метод класса: ActionScheduler_WPCLI_Scheduler_command{}

Хуков нет.

Возвращает

null. Ничего (null).

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

// protected - в коде основоного (родительского) или дочернего класса
$result = $this->print_error( $e );
$e(Exception) (обязательный)
The error object.

Код ActionScheduler_WPCLI_Scheduler_command::print_error() WC 8.7.0

protected function print_error( Exception $e ) {
	WP_CLI::error(
		sprintf(
			/* translators: %s refers to the exception error message */
			__( 'There was an error running the action scheduler: %s', 'woocommerce' ),
			$e->getMessage()
		)
	);
}