fDescription = description;
}
public void addFailure(Throwable targetException) {
if (targetException instanceof MultipleFailureException) {
MultipleFailureException mfe = (MultipleFailureException) targetException;
for (Throwable each : mfe.getFailures())
addFailure(each);
return;
}
// System.out.println("addFailure --> ############################# --> "
// + fDescription + " Exception --- > " + targetException);