com.scalar.dl.ledger.exception.ContractException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of scalardl-java-client-sdk Show documentation
Show all versions of scalardl-java-client-sdk Show documentation
A client-side Java library to interact with Scalar DL network.
The newest version!
package com.scalar.dl.ledger.exception;
import com.scalar.dl.ledger.service.StatusCode;
public class ContractException extends LedgerException {
public ContractException(String message, StatusCode code) {
super(message, code);
}
public ContractException(String message, Throwable cause, StatusCode code) {
super(message, cause, code);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy