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
ErrorMessage
Gets the error message.
public string ErrorMessage { get; init; }
Property Value
ErrorType
Gets the type of error that occurred.
public string ErrorType { get; init; }
Property Value
HelpLinks
Gets related documentation or help links.
public IReadOnlyList<string> HelpLinks { get; init; }
Property Value
InnerException
Gets inner exception information if available.
public string? InnerException { get; init; }
Property Value
IsTransient
Gets whether the error is likely transient (temporary).
public bool IsTransient { get; init; }
Property Value
PotentialCauses
Gets potential root causes for the error.
public IReadOnlyList<string> PotentialCauses { get; init; }
Property Value
Severity
Gets the severity of the error.
public ValidationSeverity Severity { get; init; }
Property Value
StackTrace
Gets the stack trace if available.
public string? StackTrace { get; init; }
Property Value
SuggestedActions
Gets suggested actions to resolve the error.
public IReadOnlyList<string> SuggestedActions { get; init; }