AggregateException Class

Task Parallel System.Threading

Represents one or more errors that occur during application execution.

Namespace:  System
Assembly:  System.Threading (in System.Threading.dll)

Syntax

Visual Basic (Declaration)
<SerializableAttribute> _
Public Class AggregateException _
	Inherits Exception
C#
[SerializableAttribute]
public class AggregateException : Exception

Remarks

AggregateException is used to consolidate multiple failures into a single, throwable exception object.

Inheritance Hierarchy

System..::.Object
  System..::.Exception
    System..::.AggregateException

See Also