bitronix.tm.internal.BitronixRuntimeException Maven / Gradle / Ivy
package bitronix.tm.internal;
/**
* Thrown when a runtime exception happens.
*
*
* @author lorban
*/
public class BitronixRuntimeException extends RuntimeException {
public BitronixRuntimeException(String message, Throwable cause) {
super(message, cause);
}
public BitronixRuntimeException(String message) {
super(message);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy