Class LineConfigurationFault
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
errorMessagestringThe error message.
lineNumberintThe line number in the configuration XML at which the error occurred.
characterPositionintThe character position in the configuration XML at which the error occurred.
Exceptions
- ArgumentNullException
errorMessageis null.
Properties
CharacterPosition
Gets the character position in the configuration XML at which the error occurred.
[DataMember]
public int CharacterPosition { get; }
Property Value
ErrorMessage
Gets the error message.
[DataMember]
public string ErrorMessage { get; }
Property Value
LineNumber
Gets the line number in the configuration XML at which the error occurred.
[DataMember]
public int LineNumber { get; }