for (Map.Entry<URL, ExceptionHandler> entry : initializedVFSContexts.entrySet())
{
URL url = entry.getKey();
VFS vfs = VFS.getVFS(url);
ExceptionHandler eh = entry.getValue();
if (eh != null)
vfs.setExceptionHandler(eh);
log.debug("Initialized Virtual File: " + vfs.getRoot());
refs.put(url, vfs);