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

com.jd.blockchain.sdk.BlockchainException Maven / Gradle / Ivy

The newest version!
package com.jd.blockchain.sdk;

public class BlockchainException extends RuntimeException {
	
	private static final long serialVersionUID = 8228291068740022658L;

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




© 2015 - 2025 Weber Informatics LLC | Privacy Policy