Module io.helidon.webserver
Package io.helidon.webserver
Interface ErrorHandler<T extends Throwable>
- Type Parameters:
T
- Type of handled error.
- Functional Interface:
- This is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference.
The routing error handler.
Can be mapped to the error cause in the
Routing
.- See Also:
-
Method Summary
Modifier and TypeMethodDescriptionvoid
accept
(ServerRequest req, ServerResponse res, T ex) Error handling consumer.
-
Method Details
-
accept
Error handling consumer.- Parameters:
req
- the server requestres
- the server responseex
- the cause of the error
-