|
} finally { |
|
// Do nothing if it fails because we don't want this to be a blocker |
|
// Most requests will timeout waiting for a response, but we want to fire and forget |
|
// so as long as Affirm receives our request we are okay |
|
} |
A try with no catch will propagate the exception.
Contrary to the comment, the finally block does not eat the exception.
Salesforce_Commerce_Cloud_Affirm/cartridges/int_affirm/cartridge/scripts/utils/affirmTracker.js
Lines 86 to 90 in afee520
A
trywith nocatchwill propagate the exception.Contrary to the comment, the
finallyblock does not eat the exception.