예제 #1
0
파일: Job.java 프로젝트: mwsobol/iGrid
 @Override
 public List<ThrowableTrace> getExceptions() {
   List<ThrowableTrace> exceptions = new ArrayList<ThrowableTrace>();
   for (Exertion ext : exertions) {
     exceptions.addAll(ext.getExceptions());
   }
   return exceptions;
 }