io.github.perplexhub.rsql.PropertyAccessControlException Maven / Gradle / Ivy
package io.github.perplexhub.rsql;
/**
* Thrown indicate that property blacklisted/not whitelisted, in other words forbidden to use.
*/
public class PropertyAccessControlException extends PropertyException {
public PropertyAccessControlException(String name, Class> type, String message) {
super(name, type, message);
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy