Package io.micronaut.web.router
Interface ErrorRoute
- All Superinterfaces:
Route
Represents a
Route
that matches an exception.- Since:
- 1.0
- Author:
- Graeme Rocher
-
Field Summary
Fields inherited from interface io.micronaut.web.router.Route
DEFAULT_PRODUCES
-
Method Summary
Modifier and TypeMethodDescriptionApplies the given accepted media type the route.Defines routes nested within this route.Applies the given accepted media type the route.where
(Predicate<HttpRequest<?>> condition) Match thisRoute
only if the given predicate is true.Methods inherited from interface io.micronaut.web.router.Route
body, body, consumesAll, getConsumes, getProduces
-
Method Details
-
toRouteInfo
ErrorRouteInfo<Object,Object> toRouteInfo()- Specified by:
toRouteInfo
in interfaceRoute
-
originatingType
- Returns:
- The type the exception originates from. Null if the error route is global.
-
exceptionType
- Returns:
- The type of exception
-
consumes
Description copied from interface:Route
Applies the given accepted media type the route. -
nest
Description copied from interface:Route
Defines routes nested within this route. -
where
Description copied from interface:Route
Match thisRoute
only if the given predicate is true.- Specified by:
where
in interfaceRoute
- Parameters:
condition
- The condition which accepts aHttpRequest
- Returns:
- This route
-
produces
Description copied from interface:Route
Applies the given accepted media type the route.
-