cn.ubibi.jettyboot.framework.rest.ifs.ControllerExceptionHandler Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jettyboot Show documentation
Show all versions of jettyboot Show documentation
jetty boot Library, simple mvc and data ORM framework
package cn.ubibi.jettyboot.framework.rest.ifs;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;
import java.io.IOException;
public interface ControllerExceptionHandler {
boolean handle(Exception e, HttpServletRequest request, HttpServletResponse response) throws IOException;
}