Slide 28
Slide 28 text
try {
...
} catch (Exception e) {
throw new ContextedRuntimeException("Error posting account transaction", e)
.addContextValue("Account Number", accountNumber)
.addContextValue("Amount Posted", amountPosted)
.addContextValue("Previous Balance", previousBalance)
}
org.apache.commons.lang3.exception.ContextedRuntimeException:
java.lang.Exception: Error posting account transaction
Exception Context:
[1:Account Number=null]
[2:Amount Posted=100.00]
[3:Previous Balance=-2.17]
[4:Transaction Id=94ef1d15-d443-46c4-822b-637f26244899]