Class FdlBuildError
Details an FDL build error
Inheritance
System.Object
FdlBuildError
Implements
Namespace: MESL.SqlRace.Domain.Functions.Fdl
Assembly: MESL.SqlRace.Domain.dll
Syntax
public class FdlBuildError : Object, IFunctionBuildError
Constructors
FdlBuildError(String)
Initializes a new instance of the FdlBuildError class.
Declaration
public FdlBuildError(string errorText)
Parameters
Type | Name | Description |
---|---|---|
System.String | errorText | The error text. |
Properties
ErrorText
Gets the error text.
Declaration
public string ErrorText { get; set; }
Property Value
Type | Description |
---|---|
System.String | The error text. |
IsWarning
Gets a value indicating whether this instance is warning.
Declaration
public bool IsWarning { get; set; }
Property Value
Type | Description |
---|---|
System.Boolean |
|