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

io.github.perplexhub.rsql.UnknownPropertyException Maven / Gradle / Ivy

There is a newer version: 6.0.23
Show newest version
package io.github.perplexhub.rsql;

/**
 * Thrown to indicate that RSQL query contains unknown field.
 */
public class UnknownPropertyException extends PropertyException {

  public UnknownPropertyException(String name, Class type) {
    super(name, type, String.format("Unknown property: %s from entity %s", name, type.getName()));
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy