• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Jeanne Boyarsky
  • Ron McLeod
  • Paul Clapham
  • Liutauras Vilda
Sheriffs:
  • paul wheaton
  • Rob Spoor
  • Devaka Cooray
Saloon Keepers:
  • Stephan van Hulst
  • Tim Holloway
  • Carey Brown
  • Frits Walraven
  • Tim Moores
Bartenders:
  • Mikalai Zaikin

Business Process Exception Handling

 
Greenhorn
Posts: 10
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
In Weblogic Workshop 10.3 I've got a process with a particular node that performs a piece of code that is surrounded by try/catch statements. The catch statement gathers the exception message and emails the System admins. My intent is to exit and abandon the entire process after the exception, however the Business process continues to run onto the next node.

I'm new to Exception Paths in workshop (and workshop in general), so I created one on that particular node. Right after the OnException I created a Finish node. I noticed that the Exception path seems to be getting ignored due to the try/catch statements (maybe they take preference?). If I comment out the try/catch then my Exception path works. I'd like to continue using the exception path rather than using try/catch, however I'd still like to capture the exception message and email the system admins. Any recommendation on this? Thanks
 
reply
    Bookmark Topic Watch Topic
  • New Topic