
io.neow3j.contract.abi.exceptions.NEP3ParsingException Maven / Gradle / Ivy
package io.neow3j.contract.abi.exceptions;
/**
* NEP3 parsing exception or invalid format.
*/
public class NEP3ParsingException extends NEP3Exception {
public NEP3ParsingException(String message) {
super(message);
}
public NEP3ParsingException(String message, Throwable cause) {
super(message, cause);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy