com.rotilho.jnano.commons.exception.ActionNotSupportedException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jnano-commons Show documentation
Show all versions of jnano-commons Show documentation
JNano provides a set of low level Nano operations that includes signing, seed generation, block hashing and account creation.
package com.rotilho.jnano.commons.exception;
public class ActionNotSupportedException extends RuntimeException {
public ActionNotSupportedException(String message, Throwable cause) {
super(message, cause);
}
}