com.oceanprotocol.squid.exceptions.ConditionNotFoundException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of squid Show documentation
Show all versions of squid Show documentation
Squid facilitate the interaction of java clients with the Ocean Protocol network
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);
}
}