com.chain.exception.ChainException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of chain-sdk-java Show documentation
Show all versions of chain-sdk-java Show documentation
The Official Java SDK for Chain Core Developer Edition
package com.chain.exception;
/**
* Base exception class for the Chain Core SDK.
*/
public class ChainException extends Exception {
/**
* Default constructor.
*/
public ChainException() {
super();
}
/**
* Initializes exception with its message attribute.
* @param message error message
*/
public ChainException(String message) {
super(message);
}
}