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

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

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

import javax.transaction.HeuristicMixedException;

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

© Bitronix Software

* * @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