ServletContext context, String key) {
TilesContainer container = getContainer(context, key);
if (container != null) {
request.setAttribute(CURRENT_CONTAINER_ATTRIBUTE_NAME, container);
} else {
throw new NoSuchContainerException("The container with the key '"
+ key + "' cannot be found");
}
}