com.kasinf.framework.rest.exception.InvalidSearchValueException Maven / Gradle / Ivy
package com.kasinf.framework.rest.exception;
/**
* @author 凯鸿
*/
public final class InvalidSearchValueException extends SearchException {
private static final long serialVersionUID = -8017152387637336145L;
public InvalidSearchValueException(String searchProperty, String entityProperty, Object value) {
this(searchProperty, entityProperty, value, null);
}
public InvalidSearchValueException(String searchProperty, String entityProperty, Object value, Throwable cause) {
super("Invalid Search Value, searchProperty [" + searchProperty + "], " +
"entityProperty [" + entityProperty + "], value [" + value + "]", cause);
}
}