How to hand an occuring exception to an Ivy-Exception handler?
I want to handle exceptions occuring in an external java class. The class is called in a script step. Now I want to pass this to an Exception Start in the Process Model. Can I achive this?
Script Step:
try {
out.geoCodeResponse = geoCode.getXMLByGoogle(address);
} catch (Exception e) {
// Pass exception to exception start
}
Thanks for any help!help!
Edit:
It just came accross my mind to set an ivy-variable error:Boolean and set a condition to choose a different process path in error case. But regardless this fact, is it possible to start an Ivy-Exception start from a try-catch-block?