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