Uses of Class
ratpack.exec.registry.NotInRegistryException
-
Packages that use NotInRegistryException Package Description ratpack.core.handling The handling of application requests.ratpack.exec.registry Registries hold objects that can be retrieved via type, and are a key aspect of Ratpack applications. -
-
Uses of NotInRegistryException in ratpack.core.handling
Methods in ratpack.core.handling that throw NotInRegistryException Modifier and Type Method Description void
Context. clientError(int statusCode)
Forwards the error to theClientErrorHandler
in this service.Path
Context. file(String path)
Gets the file relative to the contextualFileSystemBinding
.default PathTokens
Context. getAllPathTokens()
The contextual path tokens of the currentPathBinding
.default PathTokens
Context. getPathTokens()
The contextual path tokens of the currentPathBinding
. -
Uses of NotInRegistryException in ratpack.exec.registry
Methods in ratpack.exec.registry that throw NotInRegistryException Modifier and Type Method Description default <O> O
Registry. get(com.google.common.reflect.TypeToken<O> type)
Provides an object of the specified type, or throws an exception if no object of that type is available.default <O> O
Registry. get(Class<O> type)
Provides an object of the specified type, or throws an exception if no object of that type is available.<T> void
MutableRegistry. remove(com.google.common.reflect.TypeToken<T> type)
Remove the registration for the given type.default <T> void
MutableRegistry. remove(Class<T> type)
Remove the registration for the given type.
-