Action_Scheduler\WP_CLI\Action

Create_Command::print_errorprotectedWC 1.0

Convert an exception into a WP CLI error.

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

Хуков нет.

Возвращает

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

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

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

Код Create_Command::print_error() WC 10.0.2

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