Пример #1
0
 @Override
 public String toString() {
   StringBuilder buf = new StringBuilder();
   buf.append("<exception:");
   boolean first = true;
   for (ExceptionSet.ThrownExceptionIterator i = exceptionSet.iterator(); i.hasNext(); ) {
     if (first) {
       first = false;
     } else {
       buf.append(',');
     }
     buf.append(i.next().toString());
   }
   buf.append(">");
   return buf.toString();
 }