C# Class clipr.Utils.AggregateException

An exception that aggregates multiple other exceptions together.
Inheritance: System.Exception
Datei anzeigen Open project: nemec/clipr

Public Methods

Method Description
AggregateException ( IEnumerable exceptions ) : System

Create a new AggregateException instance that contains the given exceptions.

Handle ( bool>.Func handler ) : void

Handle each exception.

Method Details

AggregateException() public method

Create a new AggregateException instance that contains the given exceptions.
public AggregateException ( IEnumerable exceptions ) : System
exceptions IEnumerable
return System

Handle() public method

Handle each exception.
public Handle ( bool>.Func handler ) : void
handler bool>.Func
return void