com.citahub.cita.protocol.exceptions.TransactionException Maven / Gradle / Ivy
The newest version!
package com.citahub.cita.protocol.exceptions;
/**
* Transaction timeout exception indicates that we have breached some threshold waiting for a
* transaction to execute.
*/
public class TransactionException extends Exception {
public TransactionException(String message) {
super(message);
}
public TransactionException(Throwable cause) {
super(cause);
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy