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

cc.youchain.tx.exceptions.TxHashMismatchException Maven / Gradle / Ivy

There is a newer version: 1.1.5
Show newest version
package cc.youchain.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 - 2024 Weber Informatics LLC | Privacy Policy