![JAR search and dependency download from the Maven repository](/logo.png)
io.neow3j.crypto.exceptions.NEP2AccountNotFound 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
package io.neow3j.crypto.exceptions;
/**
* NEP2 specific account not found in the wallet.
*/
public class NEP2AccountNotFound extends Exception {
public NEP2AccountNotFound() {
}
public NEP2AccountNotFound(String message) {
super(message);
}
public NEP2AccountNotFound(String message, Throwable cause) {
super(message, cause);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy