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

com.kasinf.framework.rest.exception.InvalidSearchValueException Maven / Gradle / Ivy

There is a newer version: 1.4.0
Show newest version
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);
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy