io.github.nichetoolkit.rest.RestExceptionAdvice Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of rest-toolkit-core Show documentation
Show all versions of rest-toolkit-core Show documentation
Rest toolkit core project for Spring Boot
package io.github.nichetoolkit.rest;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;
/**
* RestExceptionAdvice
* @author Cyan ([email protected])
* @version v1.0.0
*/
public interface RestExceptionAdvice {
default void preExceptionHandle(Exception exception, HttpServletRequest request, HttpServletResponse response) {
}
default void doRestExceptionHandle(RestException exception, HttpServletRequest request, HttpServletResponse response) {
}
default void doExceptionHandle(Exception exception, HttpServletRequest request, HttpServletResponse response) {
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy