RdfParseException Constructor (String, Int32, Int32, Int32, Int32, Exception) | 
 
            Creates a new RDF Parse Exception which contains Position Information.
            
 
    Namespace: 
   VDS.RDF.Parsing
    Assembly:
   dotNetRDF (in dotNetRDF.dll) Version: 
Syntaxpublic RdfParseException(
	string errorMsg,
	int startLine,
	int endLine,
	int startPos,
	int endPos,
	Exception cause
)
Public Sub New ( 
	errorMsg As String,
	startLine As Integer,
	endLine As Integer,
	startPos As Integer,
	endPos As Integer,
	cause As Exception
)
Parameters
- errorMsg
 - Type: SystemString
Error Message. - startLine
 - Type: SystemInt32
Line the error starts on. - endLine
 - Type: SystemInt32
Line the error ends on. - startPos
 - Type: SystemInt32
Column Position the error starts at. - endPos
 - Type: SystemInt32
Column Position the error ends at. - cause
 - Type: SystemException
Error that caused this exception. 
See Also