org.smart4j.framework.mvc.HandlerExceptionResolver Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of smart-framework Show documentation
Show all versions of smart-framework Show documentation
Smart Framework is a lightweight Java Web Framework
package org.smart4j.framework.mvc;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;
/**
* Handler 异常解析器
*
* @author huangyong
* @since 2.3
*/
public interface HandlerExceptionResolver {
/**
* 解析 Handler 异常
*
* @param request 请求对象
* @param response 响应对象
* @param e 异常
*/
void resolveHandlerException(HttpServletRequest request, HttpServletResponse response, Exception e);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy