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

io.blockfrost.sdk.api.exception.RuntimeAPIException Maven / Gradle / Ivy

package io.blockfrost.sdk.api.exception;

public class RuntimeAPIException extends RuntimeException {

    public RuntimeAPIException(Throwable cause) {
        super(cause);
    }

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

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy