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

com.lithium.ldn.starql.exceptions.ConstraintOperatorNotSupportedException Maven / Gradle / Ivy

There is a newer version: 2.13
Show newest version
package com.lithium.ldn.starql.exceptions;

import com.lithium.ldn.starql.models.QlConstraintOperator;

@SuppressWarnings("serial")
public class ConstraintOperatorNotSupportedException extends QueryValidationException {

	public ConstraintOperatorNotSupportedException(String propertyName, String collectionName, 
			QlConstraintOperator op, String query) {
		super("Property " + quote(propertyName) + " in collection " + quote(collectionName) + 
				" does not support operator " + quote(op.getName()) + ".", query);
	}

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy