Initializes a new instance of the DataAccessException class with a specified error message and a reference to the inner exception that is the cause of this exception.

Namespace:  C1.C1Report
Assembly:  C1.C1Report.2 (in C1.C1Report.2.dll)

Syntax

C#
public DataAccessException(
	string msg,
	Exception x
)
Visual Basic
Public Sub New ( _
	msg As String, _
	x As Exception _
)

Parameters

msg
Type: System..::..String
The error message that explains the reason for the exception.
x
Type: System..::..Exception
The exception that is the cause of the current exception.

See Also