org.fisco.bcos.web3j.tx.exceptions.TxHashMismatchException Maven / Gradle / Ivy
package org.fisco.bcos.web3j.tx.exceptions;
import java.io.IOException;
public class TxHashMismatchException extends IOException {
private String txHashLocal;
private String txHashRemote;
public TxHashMismatchException(String txHashLocal, String txHashRemote) {
this.txHashLocal = txHashLocal;
this.txHashRemote = txHashRemote;
}
public String getTxHashLocal() {
return txHashLocal;
}
public String getTxHashRemote() {
return txHashRemote;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy