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

org.ergoplatform.appkit.ErgoClientException Maven / Gradle / Ivy

The newest version!
package org.ergoplatform.appkit;

/**
 * Exception class which is typically thrown from this library code.
 * Usually root cause exceptions are caught and rethrown wrapped in this class.
 */
public class ErgoClientException extends RuntimeException {
    public ErgoClientException(String message, Throwable cause) {
        super(message, cause);
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy