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

org.fisco.bcos.web3j.protocol.exceptions.TransactionTimeoutException Maven / Gradle / Ivy

package org.fisco.bcos.web3j.protocol.exceptions;

/**
 * Transaction timeout exception indicates that we have breached some threshold waiting for a
 * transaction to execute.
 */
public class TransactionTimeoutException extends Exception {
  public TransactionTimeoutException(String message) {
    super(message);
  }

  public TransactionTimeoutException(String message, Throwable cause) {
    super(message, cause);
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy