Action_Scheduler\WP_CLI\Action
Create_Command::print_error
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() Create Command::print error WC 11.0.1
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()
)
);
}