Skip to content

Commit ef05fa6

Browse files
committed
Improve exception message
1 parent 1ad65a3 commit ef05fa6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

app/code/Magento/Checkout/Model/ShippingInformationManagement.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -185,7 +185,7 @@ public function saveAddressInformation(
185185
} catch (\Exception $e) {
186186
$this->logger->critical($e);
187187
throw new InputException(
188-
__('The shipping information was unable to be saved. Verify the input data and try again.')
188+
__('The shipping information was unable to be saved. Error: "%1"', $e->getMessage())
189189
);
190190
}
191191

0 commit comments

Comments
 (0)