Chili.Opf3 Send comments on this topic.
OPathException Constructor(String,String,String,Exception)
See Also 
Chili.Opf3.Query.OPathParser Namespace > OPathException Class > OPathException Constructor : OPathException Constructor(String,String,String,Exception)




message
A message that describes the current exception.
token
The current token which generated the exception.
oPath
The whole OPath expression that is parsed.
inner
The exception that caused the current exception.
Creates a new instance of the OPathException Class.

Syntax

Visual Basic (Declaration) 
Public Function New( _
   ByVal message As String, _
   ByVal token As String, _
   ByVal oPath As String, _
   ByVal inner As Exception _
)
Visual Basic (Usage)Copy Code
Dim message As String
Dim token As String
Dim oPath As String
Dim inner As Exception
 
Dim instance As OPathException(message, token, oPath, inner)
C# 
public OPathException( 
   string message,
   string token,
   string oPath,
   Exception inner
)
Managed Extensions for C++ 
public: OPathException( 
   string* message,
   string* token,
   string* oPath,
   Exception* inner
)
C++/CLI 
public:
OPathException( 
   String^ message,
   String^ token,
   String^ oPath,
   Exception^ inner
)

Parameters

message
A message that describes the current exception.
token
The current token which generated the exception.
oPath
The whole OPath expression that is parsed.
inner
The exception that caused the current exception.

Requirements

Platforms: Windows 2000, Windows XP family, Windows Server 2003 family, Windows Vista family

See Also