io.tiler.internal.queries.InvalidQueryException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of tiler Show documentation
Show all versions of tiler Show documentation
Plugable dashboard framework
package io.tiler.internal.queries;
import java.util.List;
public class InvalidQueryException extends Exception {
private final String query;
private final List errors;
public InvalidQueryException(String query, List errors) {
super(QueryErrorFormatter.format(query, errors));
this.query = query;
this.errors = errors;
}
public String getQuery() {
return query;
}
public List getErrors() {
return errors;
}
}