You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
ic-client/src/main/java/org/gcube/resources/discovery/icclient/stubs/MalformedQueryException.java

26 lines
612 B
Java

package org.gcube.resources.discovery.icclient.stubs;
import javax.xml.ws.WebFault;
/**
* Thrown by {@link CollectorStub#execute(String)} when the query cannot be submitted to the Information Collector
* service.
*/
@WebFault(name = "XQueryFaultType")
public class MalformedQueryException extends RuntimeException {
/**
*
*/
private static final long serialVersionUID = 1L;
/**
* Creates an instance with a given message and an {@link AxisFaultInfo} payload
* @param message the message
* @param info the payload
*/
public MalformedQueryException(String message) {
super(message);
}
}