com.unstoppabledomains.exceptions.ContractCallException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of unstoppable-resolution Show documentation
Show all versions of unstoppable-resolution Show documentation
Resolution library that talks with etherium .crypto registry to resolve various information attached to .crypto domain
package com.unstoppabledomains.exceptions;
public class ContractCallException extends RuntimeException {
/**
*
*/
private static final long serialVersionUID = 1L;
public ContractCallException(String message) {
super(message);
}
public ContractCallException(String message, Throwable cause) {
super(message, cause);
}
}