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

io.github.nichetoolkit.rest.RestExceptionAdvice Maven / Gradle / Ivy

There is a newer version: 1.1.1
Show newest version
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