Declaration
public CuteMLParseException(
string message,
int index,
int length,
int? firstIndex = null,
Exception inner = null
)
Summary
Constructor.
Parameters
string | message |
Message. |
int | index |
The character index into the original string where the error occurred. |
int | length |
The length of the text in the original string where the error occurred. |
int? | firstIndex |
The character index of an earlier position in the original string where the error started (e.g. the start of a tag
that is missing its end tag). |
Exception | inner |
An inner exception to pass to the base Exception class. |