I\'d like to know how I could I thorw a \"final\" Exception, containing a detail message with all the detail messages of a number of chained exceptions.
Exception
you can better use it this way, merge the message() of previous Exception with the message() of new Exception you are throwing:
message()
throw
} catch (Exception e) { throw new Exception("FIRST EXCEPTION" + e.getMessage(), e); }