Triggered if an error occurs during the
order placement.
This event is triggered only if the order is created from the front-end store pages.
public function subscribeEvents()
{
Backend::$events->addEvent('shop:onOrderError', $this, 'process_order_error');
}
public function process_order_error($cart_name, $error_message)
{
// Do something
}