Table of Contents

Class LineConfigurationFault

Namespace
Acuit.Pinpoint.Services.Entities
Assembly
Acuit.Pinpoint.Services.Entities.dll

A line configuration fault.

[DataContract(Namespace = "http://schemas.datacontract.org/2004/07/Acuit.Pinpoint.Server.Services")]
public class LineConfigurationFault
Inheritance
LineConfigurationFault
Inherited Members

Constructors

LineConfigurationFault(string, int, int)

Initializes a new instance of the LineConfigurationFault class.

public LineConfigurationFault(string errorMessage, int lineNumber, int characterPosition)

Parameters

errorMessage string

The error message.

lineNumber int

The line number in the configuration XML at which the error occurred.

characterPosition int

The character position in the configuration XML at which the error occurred.

Exceptions

ArgumentNullException

errorMessage is null.

Properties

CharacterPosition

Gets the character position in the configuration XML at which the error occurred.

[DataMember]
public int CharacterPosition { get; }

Property Value

int

ErrorMessage

Gets the error message.

[DataMember]
public string ErrorMessage { get; }

Property Value

string

LineNumber

Gets the line number in the configuration XML at which the error occurred.

[DataMember]
public int LineNumber { get; }

Property Value

int