io.p8e.functional.ContractErrorHandler.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of p8e-sdk Show documentation
Show all versions of p8e-sdk Show documentation
A collection of services and libraries that iteract and run Provenance Java based contracts.
package io.p8e.functional
import io.p8e.proxy.ContractError
import io.p8e.spec.P8eContract
@FunctionalInterface
interface ContractErrorHandler {
fun handle(contractError: ContractError): Boolean
}