Table of Contents

Class VBApplicationErrorInfo

Namespace
RDCore.SDK.Model.Errors
Assembly
RDCore.SDK.dll

Encapsulates the serializable error data for an error.

public record VBApplicationErrorInfo : VBErrorInfo, IEquatable<VBErrorInfo>, IEquatable<VBApplicationErrorInfo>
Inheritance
VBApplicationErrorInfo
Implements
Inherited Members

Remarks

🧩 Errors should be used to generate error diagnostics.

Constructors

VBApplicationErrorInfo(int, Location, string, string)

Encapsulates the serializable error data for an error.

public VBApplicationErrorInfo(int CustomErrorCode, Location Location, string Description, string Verbose)

Parameters

CustomErrorCode int

The custom workspace application error code.

Location Location

The document location of the faulted CST node.

Description string

An optional error description. "Syntax error" unless specified otherwise.

Verbose string

A detailed description of the error.

Remarks

🧩 Errors should be used to generate error diagnostics.

Properties

CustomErrorCode

The custom workspace application error code.

public int CustomErrorCode { get; init; }

Property Value

int