Package 

Class AggregateException

  • All Implemented Interfaces:
    java.io.Serializable

    
    public class AggregateException
    extends Exception
                        

    Copyright 2017 Meniga Iceland Inc.

    Aggregates multiple {@code Throwable}s that may be thrown in the process of a task's execution.

    • Constructor Summary

      Constructors 
      Constructor Description
      AggregateException(String detailMessage, Array<Throwable> innerThrowables) Constructs a new {@code AggregateException} with the current stack trace, the specified detailmessage and with references to the inner throwables that are the cause of this exception.
      AggregateException(String detailMessage, List<out Throwable> innerThrowables) Constructs a new {@code AggregateException} with the current stack trace, the specified detailmessage and with references to the inner throwables that are the cause of this exception.
      AggregateException(List<out Throwable> innerThrowables) Constructs a new {@code AggregateException} with the current stack trace and with references tothe inner throwables that are the cause of this exception.
    • Constructor Detail

      • AggregateException

        AggregateException(String detailMessage, Array<Throwable> innerThrowables)
        Constructs a new {@code AggregateException} with the current stack trace, the specified detailmessage and with references to the inner throwables that are the cause of this exception.
        Parameters:
        detailMessage - The detail message for this exception.
        innerThrowables - The exceptions that are the cause of the current exception.
      • AggregateException

        AggregateException(String detailMessage, List<out Throwable> innerThrowables)
        Constructs a new {@code AggregateException} with the current stack trace, the specified detailmessage and with references to the inner throwables that are the cause of this exception.
        Parameters:
        detailMessage - The detail message for this exception.
        innerThrowables - The exceptions that are the cause of the current exception.
      • AggregateException

        AggregateException(List<out Throwable> innerThrowables)
        Constructs a new {@code AggregateException} with the current stack trace and with references tothe inner throwables that are the cause of this exception.
        Parameters:
        innerThrowables - The exceptions that are the cause of the current exception.