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

com.oceanprotocol.squid.exceptions.ConditionNotFoundException Maven / Gradle / Ivy

Go to download

Squid facilitate the interaction of java clients with the Ocean Protocol network

There is a newer version: 0.6.2
Show newest version
package com.oceanprotocol.squid.exceptions;

/**
 * Business Exception related with Conditions issues
 */
public class ConditionNotFoundException extends OceanException {

    public ConditionNotFoundException(String message, Throwable e) {
        super(message, e);
    }

    public ConditionNotFoundException(String message) {
        super(message);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy