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

com.unstoppabledomains.exceptions.ContractCallException Maven / Gradle / Ivy

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);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy