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

com.jd.blockchain.ledger.TransactionRollbackException Maven / Gradle / Ivy

There is a newer version: 1.6.5.RELEASE
Show newest version
package com.jd.blockchain.ledger;

/**
 * 开发在合约中抛出此 TransactionRollbackException 异常可以主动回滚当前交易;
 * 
 * 

* 主动回滚的交易将被系统忽略; * * @author huanghaiquan * */ public class TransactionRollbackException extends RuntimeException { private static final long serialVersionUID = -1223140447229570029L; public TransactionRollbackException(String message) { super(message); } public TransactionRollbackException(String message, Throwable cause) { super(message, cause); } }





© 2015 - 2025 Weber Informatics LLC | Privacy Policy