Click or drag to resize
AggregateException Class
Wraps multiple inner exceptions. http://msdn.microsoft.com/en-us/magazine/ee321571.aspx
Inheritance Hierarchy
SystemObject
  SystemException
    Slash.SystemExt.ExceptionsAggregateException

Namespace: Slash.SystemExt.Exceptions
Assembly: Slash.System (in Slash.System.dll) Version: 1.0.5843.24176
Syntax
public class AggregateException : Exception

The AggregateException type exposes the following members.

Constructors
  NameDescription
Public methodAggregateException
Constructs a new, empty aggregate exception.
Public methodAggregateException(IEnumerableException)
Constructs a new aggreate exception wrapping the passed inner exceptions.
Public methodAggregateException(Exception)
Constructs a new aggreate exception wrapping the passed inner exceptions.
Public methodAggregateException(String)
Constructs a new, empty aggregate exception with the specified detail message.
Public methodAggregateException(String, IEnumerableException)
Constructs a new aggreate exception wrapping the passed inner exceptions with the specified detail message.
Public methodAggregateException(String, Exception)
Constructs a new aggregate exception to wrap the passed inner exception with the specified detail message.
Public methodAggregateException(String, Exception)
Constructs a new aggreate exception wrapping the passed inner exceptions with the specified detail message.
Top
Properties
  NameDescription
Public propertyInnerExceptions
Wrapped exceptions.
Public propertyMessages
Get the messages describing the inner exceptions, one per line.
Top
See Also