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

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

package com.lithium.ldn.starql.exceptions;

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

	public PropertyNotSortableException(String propertyName, String collectionName, String query) {
		super("Property " + quote(propertyName) + " in collection " + quote(collectionName) + 
				" is not sortable.", query);
	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy