Uses of Class
ratpack.registry.NotInRegistryException
-
Packages that use NotInRegistryException Package Description ratpack.handling The handling of application requests.ratpack.registry Registries hold objects that can be retrieved via type, and are a key aspect of Ratpack applications. -
-
Uses of NotInRegistryException in ratpack.handling
Methods in ratpack.handling that throw NotInRegistryException Modifier and Type Method Description voidContext. clientError(int statusCode)Forwards the error to theClientErrorHandlerin this service.java.nio.file.PathContext. file(java.lang.String path)Gets the file relative to the contextualFileSystemBinding.default PathTokensContext. getAllPathTokens()The contextual path tokens of the currentPathBinding.default PathTokensContext. getPathTokens()The contextual path tokens of the currentPathBinding. -
Uses of NotInRegistryException in ratpack.registry
Methods in ratpack.registry that throw NotInRegistryException Modifier and Type Method Description default <O> ORegistry. 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> ORegistry. get(java.lang.Class<O> type)Provides an object of the specified type, or throws an exception if no object of that type is available.<T> voidMutableRegistry. remove(com.google.common.reflect.TypeToken<T> type)Remove the registration for the given type.default <T> voidMutableRegistry. remove(java.lang.Class<T> type)Remove the registration for the given type.
-