public Object handle(UrlMappingRule currentRule) {
String path = super.convertPath(currentRule);
if (path == null) {
WebApplicationContext context = WebApplicationContext.getCurrentThreadWebApplicationContext();
String url = context.getAccessURI();
return new TemplateNotFoundException("Generically convert from path:" + url);
} else {
return path;
}
}