return new FileStore(conf_).getDatabases();
} catch(MetaException e) {
this.incrementCounter("exceptions");
LOG.error("Got exception in get_dbs: " + e.getMessage());
e.printStackTrace();
throw new TApplicationException("MetaException getting dbs:" + e.getMessage());
} catch(RuntimeException e) {
LOG.fatal("get_dbs got a runtime exception: " + e.getMessage());
MetaStoreUtils.printStackTrace(e);
throw new MetaException("get_dbs had an internal Java RuntimeException: " + e.getMessage());
}