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

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

The newest version!
package com.kasinf.framework.rest.exception;

import org.springframework.core.NestedRuntimeException;

/**
 * @author 凯鸿
 */
public class SearchException extends NestedRuntimeException {

    public SearchException(String msg) {
        super(msg);
    }

    public SearchException(String msg, Throwable cause) {
        super(msg, cause);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy