Table of Contents

Class ErrorAnalysis

Namespace
DotCompute.Abstractions.Debugging
Assembly
DotCompute.Abstractions.dll

Represents detailed analysis of an error that occurred during kernel execution.

public sealed class ErrorAnalysis
Inheritance
ErrorAnalysis
Inherited Members

Properties

Context

Gets error context information.

public Dictionary<string, object> Context { get; init; }

Property Value

Dictionary<string, object>

ErrorMessage

Gets the error message.

public string ErrorMessage { get; init; }

Property Value

string

ErrorType

Gets the type of error that occurred.

public string ErrorType { get; init; }

Property Value

string

Gets related documentation or help links.

public IReadOnlyList<string> HelpLinks { get; init; }

Property Value

IReadOnlyList<string>

InnerException

Gets inner exception information if available.

public string? InnerException { get; init; }

Property Value

string

IsTransient

Gets whether the error is likely transient (temporary).

public bool IsTransient { get; init; }

Property Value

bool

PotentialCauses

Gets potential root causes for the error.

public IReadOnlyList<string> PotentialCauses { get; init; }

Property Value

IReadOnlyList<string>

Severity

Gets the severity of the error.

public ValidationSeverity Severity { get; init; }

Property Value

ValidationSeverity

StackTrace

Gets the stack trace if available.

public string? StackTrace { get; init; }

Property Value

string

SuggestedActions

Gets suggested actions to resolve the error.

public IReadOnlyList<string> SuggestedActions { get; init; }

Property Value

IReadOnlyList<string>