Table of Contents

Class AggregateError

Namespace
Rascal.Errors
Assembly
Rascal.dll

An error which is a combination of other errors.

public sealed class AggregateError : Error
Inheritance
AggregateError
Inherited Members
Extension Methods

Constructors

AggregateError(IEnumerable<Error>)

An error which is a combination of other errors.

public AggregateError(IEnumerable<Error> errors)

Parameters

errors IEnumerable<Error>

The errors the error consists of.

Properties

Errors

The errors the error consists of.

public IReadOnlyCollection<Error> Errors { get; }

Property Value

IReadOnlyCollection<Error>
An error which is a combination of other errors.

Message

The message used to display the error.

public override string Message { get; }

Property Value

string
An error which is a combination of other errors.