com.scalar.dl.ledger.exception.ContractContextException 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 ContractContextException extends ContractException {
public ContractContextException(String message) {
super(message, StatusCode.CONTRACT_CONTEXTUAL_ERROR);
}
public ContractContextException(String message, Throwable cause) {
super(message, cause, StatusCode.CONTRACT_CONTEXTUAL_ERROR);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy