org.ergoplatform.appkit.ErgoClientException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of ergo-appkit_2.11 Show documentation
Show all versions of ergo-appkit_2.11 Show documentation
A Library for Polyglot Development of Ergo Applications
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