
io.neow3j.protocol.exceptions.Neow3jBuildException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of core Show documentation
Show all versions of core Show documentation
neow3j: Java/Kotlin/Android Development Toolkit for the Neo Blockchain
The newest version!
package io.neow3j.protocol.exceptions;
import io.neow3j.protocol.Neow3j;
import static java.lang.String.format;
/**
* This exception is thrown when a {@link Neow3j} instance cannot be built.
*/
public class Neow3jBuildException extends RuntimeException {
/**
* Creates a new {@link Neow3jBuildException} with the given message.
*
* @param message the additional message explaining the reason for the exception.
*/
public Neow3jBuildException(String message) {
super(format("Could not build Neow3j instance: %s", message));
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy