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

io.neow3j.crypto.exceptions.NEP2AccountNotFound Maven / Gradle / Ivy

There is a newer version: 3.23.0
Show newest version
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