I’m wondering if it is possible to have a domino application catch a thrown java exception. I would then either e-mail the stack trace or store it in a database. Is this doable?
Subject: Catching java exceptions
Assuming that Domino application is not Java:
If Java source is available, try to enclose suspicious piece in try-catch and System.out.println the result. It will go to either Java Debug Console (client) or Domino log (server) .
Otherwise, create a Java wrapper which calls the suspicious methods within try-catch.