Class TextParseException
Inheritance
TextParseException
Assembly: Tlumach.Base.dll
Syntax
public class TextParseException : GenericParserException, ISerializable
Constructors
TextParseException(string, int, int, int, int)
Declaration
public TextParseException(string message, int startPosition, int endPosition, int lineNumber, int columnNumber)
Parameters
| Type |
Name |
Description |
| string |
message |
|
| int |
startPosition |
|
| int |
endPosition |
|
| int |
lineNumber |
|
| int |
columnNumber |
|
TextParseException(string, int, int, int, int, Exception)
Declaration
public TextParseException(string message, int startPosition, int endPosition, int lineNumber, int columnNumber, Exception innerException)
Parameters
Properties
ColumnNumber
The column number in which the error occurred.
Declaration
public int ColumnNumber { get; }
Property Value
EndPosition
The ending position of the text block that could not be parsed.
Declaration
public int EndPosition { get; }
Property Value
LineNumber
The line number in which the error occurred.
Declaration
public int LineNumber { get; }
Property Value
StartPosition
The starting position of the text block that could not be parsed.
Declaration
public int StartPosition { get; }
Property Value
Implements