ListObjectNotDataBoundException Constructors

Definition

Overloads

ListObjectNotDataBoundException()

Initializes a new instance of the ListObjectNotDataBoundException class.

ListObjectNotDataBoundException(Exception)

Initializes a new instance of the ListObjectNotDataBoundException class with the inner exception that is the cause of this exception.

ListObjectNotDataBoundException(String)

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

ListObjectNotDataBoundException(String, Exception)

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

ListObjectNotDataBoundException()

Initializes a new instance of the ListObjectNotDataBoundException class.

public:
 ListObjectNotDataBoundException();
public ListObjectNotDataBoundException ();
Public Sub New ()

Applies to

ListObjectNotDataBoundException(Exception)

Initializes a new instance of the ListObjectNotDataBoundException class with the inner exception that is the cause of this exception.

public:
 ListObjectNotDataBoundException(Exception ^ innerException);
public ListObjectNotDataBoundException (Exception innerException);
new Microsoft.Office.Tools.Excel.ListObjectNotDataBoundException : Exception -> Microsoft.Office.Tools.Excel.ListObjectNotDataBoundException
Public Sub New (innerException As Exception)

Parameters

innerException
Exception

The exception that is the cause of the current exception.

Applies to

ListObjectNotDataBoundException(String)

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

public:
 ListObjectNotDataBoundException(System::String ^ message);
public ListObjectNotDataBoundException (string message);
new Microsoft.Office.Tools.Excel.ListObjectNotDataBoundException : string -> Microsoft.Office.Tools.Excel.ListObjectNotDataBoundException
Public Sub New (message As String)

Parameters

message
String

A message that describes the error.

Applies to

ListObjectNotDataBoundException(String, Exception)

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

public:
 ListObjectNotDataBoundException(System::String ^ message, Exception ^ innerException);
public ListObjectNotDataBoundException (string message, Exception innerException);
new Microsoft.Office.Tools.Excel.ListObjectNotDataBoundException : string * Exception -> Microsoft.Office.Tools.Excel.ListObjectNotDataBoundException
Public Sub New (message As String, innerException As Exception)

Parameters

message
String

A message that describes the error.

innerException
Exception

The exception that is the cause of the current exception.

Applies to