public AggregateException()

in Bolts/src/bolts/AggregateException.java [22:26]


  public AggregateException(List<Exception> errors) {
    super("There were multiple errors.");
    
    this.errors = errors;
  }