results = BatchSerializer.readBatch(in, dataTypes);
// Plan Descriptions
planDescription = (PlanNode)in.readObject();
ExceptionHolder holder = (ExceptionHolder)in.readObject();
if (holder != null) {
this.exception = (TeiidException)holder.getException();
}
List<ExceptionHolder> holderList = (List<ExceptionHolder>)in.readObject();
if (holderList != null) {
this.warnings = ExceptionHolder.toThrowables(holderList);
}