| TxRetryExceptionHandler.java |
/*
* JBoss, the OpenSource J2EE webOS
*
* Distributable under LGPL license.
* See terms of license at gnu.org.
*/
package org.jboss.ejb.plugins;
import org.jboss.invocation.Invocation;
/**
* Interface used by TxInterceptorCMT on whether to retry TX
*
* @author <a href="mailto:bill@jboss.org">Bill Burke</a>
* @version $Revision: 1.2 $
*
**/
public interface TxRetryExceptionHandler
{
boolean retry(Exception ex);
}
| TxRetryExceptionHandler.java |