'DeclarationPublic Function New( _ ByVal innerException As Exception, _ ByVal message As String, _ ByVal data As IDictionary, _ ByVal helpLink As String, _ ByVal source As String, _ ByVal stackTrace As String, _ ByVal serviceResult As UAServiceResult _ )
'UsageDim innerException As Exception Dim message As String Dim data As IDictionary Dim helpLink As String Dim source As String Dim stackTrace As String Dim serviceResult As UAServiceResult Dim instance As New UAServiceException(innerException, message, data, helpLink, source, stackTrace, serviceResult)
public UAServiceException( Exception innerException, string message, IDictionary data, string helpLink, string source, string stackTrace, UAServiceResult serviceResult )
public: UAServiceException( Exception^ innerException, String^ message, IDictionary^ data, String^ helpLink, String^ source, String^ stackTrace, UAServiceResult^ serviceResult )
Parameters
- innerException
- The exception that is the cause of the current exception.
The value of this parameter can be
null(Nothingin Visual Basic). - message
- The error message that explains the reason for the exception.
The value of this parameter can be
null(Nothingin Visual Basic). - data
- A collection of key/value pairs that provide additional user-defined information.
The value of this parameter cannot be
null(Nothingin Visual Basic).The individual elements of the parameter value can be
null(Nothingin Visual Basic). - helpLink
- A link to the help file associated with this exception.
The value of this parameter can be
null(Nothingin Visual Basic). - source
- The name of the application or object that causes the error.
The value of this parameter can be
null(Nothingin Visual Basic). - stackTrace
- A string representation of the immediate frames on the call stack.
The value of this parameter can be
null(Nothingin Visual Basic). - serviceResult
- The service result associated with the exception.
The value of this parameter cannot be
null(Nothingin Visual Basic).