this.bkc = new BookKeeper(new ClientConfiguration(conf), zkc);
this.admin = new BookKeeperAdmin(bkc);
} catch (CompatibilityException ce) {
throw new UnavailableException(
"CompatibilityException while initializing Auditor", ce);
} catch (IOException ioe) {
throw new UnavailableException(
"IOException while initializing Auditor", ioe);
} catch (KeeperException ke) {
throw new UnavailableException(
"KeeperException while initializing Auditor", ke);
} catch (InterruptedException ie) {
throw new UnavailableException(
"Interrupted while initializing Auditor", ie);
}
}