bitronix.tm.internal.BitronixHeuristicMixedException Maven / Gradle / Ivy
package bitronix.tm.internal;
import javax.transaction.HeuristicMixedException;
/**
* Subclass of {@link javax.transaction.HeuristicMixedException} supporting nested {@link Throwable}s.
*
*
* @author lorban
*/
public class BitronixHeuristicMixedException extends HeuristicMixedException {
public BitronixHeuristicMixedException(String string) {
super(string);
}
public BitronixHeuristicMixedException(String string, Throwable t) {
super(string);
initCause(t);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy