All Downloads are FREE. Search and download functionalities are using the official Maven repository.

bitronix.tm.internal.BitronixHeuristicRollbackException Maven / Gradle / Ivy

There is a newer version: 2.1.4
Show newest version
package bitronix.tm.internal;

import javax.transaction.HeuristicRollbackException;

/**
 * Subclass of {@link javax.transaction.HeuristicRollbackException} supporting nested {@link Throwable}s.
 * 

© Bitronix Software

* * @author lorban */ public class BitronixHeuristicRollbackException extends HeuristicRollbackException { public BitronixHeuristicRollbackException(String string) { super(string); } public BitronixHeuristicRollbackException(String string, Throwable t) { super(string); initCause(t); } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy