Uses of Class
com.exonum.binding.common.blockchain.TransactionResult
-
Packages that use TransactionResult Package Description com.exonum.binding.common.blockchain -
-
Uses of TransactionResult in com.exonum.binding.common.blockchain
Methods in com.exonum.binding.common.blockchain that return TransactionResult Modifier and Type Method Description static TransactionResult
TransactionResult. error(int errorCode, java.lang.String errorDescription)
Creates a transaction result corresponding to a user-defined exception during transaction execution (or the corresponding Error in Rust services).static TransactionResult
TransactionResult. successful()
Returns a transaction result corresponding to successful execution.static TransactionResult
TransactionResult. unexpectedError(java.lang.String errorDescription)
Creates a transaction result corresponding to an unexpected error during transaction execution (some unexpected runtime exception in Java, panic in Rust).Methods in com.exonum.binding.common.blockchain that return types with arguments of type TransactionResult Modifier and Type Method Description static com.google.gson.TypeAdapter<TransactionResult>
TransactionResult. typeAdapter(com.google.gson.Gson gson)
Provides a Gson type adapter for this class.
-