* We need to catch checked and unchecked exceptions here so we can create an ActionSequeceException with
* contextual information, including the root cause. Allowing unchecked exceptions to pass through would
* prevent valuable feedback in the log or response.
*/
} catch ( Throwable e ) {
throw new ActionSequencePromptException( Messages.getInstance().getErrorString(
"RuntimeContext.ERROR_0030_SEND_FEEDBACKFORM" ), e, //$NON-NLS-1$
session.getName(), instanceId, getActionSequence().getSequenceName(), null );
}
}