286287288289290291292293294295296
while ((line = reader.readLine()) != null) { builder.append(line + "\n"); } } catch (IOException e) { throw new CuratorException(e); } finally { try { reader.close(); }