package com.cloudera.flume.core;
import java.io.IOException;
import java.util.ArrayList;
import java.util.Collections;
import java.util.List;
private static final long serialVersionUID = -2098534380356444824L;
List<Throwable> exns = new ArrayList<Throwable>();
public void add(Throwable t) {
exns.add(t);
}
return Collections.unmodifiableList(exns);
}
}