pendingMutationAcks.add(message);
// The file listener will broadcast the applied mutations to all clients.
} catch (Exception exc) {
exc.printStackTrace(System.out);
ServerErrorImpl response = ServerErrorImpl.make();
response.setFailureReason(FailureReason.SERVER_ERROR);
StringWriter sw = new StringWriter();
exc.printStackTrace(new PrintWriter(sw));
response.setDetails(sw.toString());
message.reply(Dto.wrap(response));
}
}
}