com.kasinf.framework.rest.exception.SearchException Maven / Gradle / Ivy
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);
}
}