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

eu.bittrade.libs.steemj.exceptions.SteemInvalidTransactionException Maven / Gradle / Ivy

There is a newer version: 0.3.4
Show newest version
package eu.bittrade.libs.steemj.exceptions;

/**
 * A custom Exception to handle invalid transactions.
 * 
 * @authordez1337
 */
public class SteemInvalidTransactionException extends Exception {
    private static final long serialVersionUID = -3747123400720358339L;

    public SteemInvalidTransactionException(String message) {
        super(message);
    }

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy