InterviewSolution
| 1. |
Difference Between Try Catch Node And Throw Node? |
|
Answer» Include a Throw node to force an error path through the message flow if the content of the message CONTAINS unexpected data. If a downstream node (which can be a Throw node) throws an exception, the TryCatch node CATCHES it and routes the ORIGINAL message to its Catch terminal. CONNECT the Catch terminal to further nodes to provide error PROCESSING for the message after an exception. Include a Throw node to force an error path through the message flow if the content of the message contains unexpected data. If a downstream node (which can be a Throw node) throws an exception, the TryCatch node catches it and routes the original message to its Catch terminal. Connect the Catch terminal to further nodes to provide error processing for the message after an exception. |
|