Change Notes item #517248, was opened at 2002-02-13 15:29 You can respond by visiting: http://sourceforge.net/tracker/?func=detail&atid=381174&aid=517248&group_id=22866
Category: None Group: v3.0 (Rabbit Hole) Status: Open Priority: 5 Submitted By: Bill Burke (patriot1burke) Assigned to: Nobody/Anonymous (nobody) Summary: ApplicationDeadlockException Initial Comment: org.jboss.ejb.plugins.lock.ApplicationDeadlockException is now thrown if application deadlock is detected. On the client side, you'll need to catch it as follows: catch (RemoteException de) { Throwable cause = null; RemoteException dex = de; while (dex.detail != null) { cause = dex.detail; if (cause instanceof RemoteException) { dex = (RemoteException)cause; } else { break; } } if (cause instanceof ApplicationDeadlockException) { ---------------------------------------------------------------------- You can respond by visiting: http://sourceforge.net/tracker/?func=detail&atid=381174&aid=517248&group_id=22866 _______________________________________________ Jboss-development mailing list [EMAIL PROTECTED] https://lists.sourceforge.net/lists/listinfo/jboss-development