Is there any way to throw multiple exceptions in java?
I suppose you could create an exception containing a list of caught exceptions and throw that exception, e.g.:
class AggregateException extends Exception { List basket; }