org.brewchain.sdk.model.ChainException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of cwvj Show documentation
Show all versions of cwvj Show documentation
Java sdk for Dapps interact with cwv blockchain node
package org.brewchain.sdk.model;
public class ChainException extends RuntimeException {
private static final long serialVersionUID = -2820610267034233902L;
public ChainException(String msg){
super(msg);
}
}