Package org.refcodes.rest
Interface HttpExceptionHandler
-
- Functional Interface:
- This is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference.
@FunctionalInterface public interface HttpExceptionHandlerA lambda "catch-all" for handling exceptions during HTTP-Request processing.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidonHttpError(RestRequestEvent aRequestEvent, org.refcodes.net.HttpServerResponse aHttpServerResponse, java.lang.Exception aException, org.refcodes.net.HttpStatusCode aHttpStatusCode)Invoked upon thrownExceptioninstances whilst processing HTTP-Requests.
-
-
-
Method Detail
-
onHttpError
void onHttpError(RestRequestEvent aRequestEvent, org.refcodes.net.HttpServerResponse aHttpServerResponse, java.lang.Exception aException, org.refcodes.net.HttpStatusCode aHttpStatusCode)
Invoked upon thrownExceptioninstances whilst processing HTTP-Requests. Process the HTTP-Response as of what you get from the HTTP-Request- Parameters:
aRequestEvent- The HTTP-Request related to theException.aHttpServerResponse- The HTTP-Response to be worked with.aException- TheExceptioninvolved in the problem.aHttpStatusCode- The HTTP-Error-Code (if known) identified.
-
-