com.jd.blockchain.ledger.LedgerException Maven / Gradle / Ivy
package com.jd.blockchain.ledger;
public class LedgerException extends RuntimeException {
private static final long serialVersionUID = -4090881296855827888L;
public LedgerException(String message) {
super(message);
}
public LedgerException(String message, Throwable cause) {
super(message, cause);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy