[]
        
(Showing Draft Content)

C1.Report.DataAccessException.-ctor

DataAccessException Constructor

DataAccessException()

Initializes a new instance of the DataAccessException class.

Declaration
public DataAccessException()
Public Sub New()

DataAccessException(string)

Initializes a new instance of the DataAccessException class with a specified error message.

Declaration
public DataAccessException(string msg)
Public Sub New(msg As String)
Parameters
Type Name Description
string msg

A message that describes the error.

DataAccessException(string, Exception)

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.

Declaration
public DataAccessException(string msg, Exception x)
Public Sub New(msg As String, x As Exception)
Parameters
Type Name Description
string msg

The error message that explains the reason for the exception.

Exception x

The exception that is the cause of the current exception.