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

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

There is a newer version: 1.4.0
Show newest version
package com.kasinf.framework.rest.exception;

/**
 * @author 凯鸿
 */
public final class InvalidSearchPropertyException extends SearchException {

    private static final long serialVersionUID = 2934727579097022563L;

    public InvalidSearchPropertyException(String searchProperty, String entityProperty) {
        this(searchProperty, entityProperty, null);
    }

    public InvalidSearchPropertyException(String searchProperty, String entityProperty, Throwable cause) {
        super("Invalid Search Property [" + searchProperty + "] Entity Property [" + entityProperty + "]", cause);
    }


}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy