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

com.scalar.dl.ledger.exception.ContractContextException Maven / Gradle / Ivy

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