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