TableNotEnabledForNotificationException Constructors

Definition

Initializes a new instance of the TableNotEnabledForNotificationException class.

Overloads

TableNotEnabledForNotificationException()

Initializes a new instance of the TableNotEnabledForNotificationException class.

TableNotEnabledForNotificationException(String)

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

TableNotEnabledForNotificationException(String, Exception)

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

TableNotEnabledForNotificationException()

Initializes a new instance of the TableNotEnabledForNotificationException class.

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

Applies to

TableNotEnabledForNotificationException(String)

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

public:
 TableNotEnabledForNotificationException(System::String ^ message);
public TableNotEnabledForNotificationException (string message);
new System.Web.Caching.TableNotEnabledForNotificationException : string -> System.Web.Caching.TableNotEnabledForNotificationException
Public Sub New (message As String)

Parameters

message
String

The message that describes the error.

Applies to

TableNotEnabledForNotificationException(String, Exception)

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

public:
 TableNotEnabledForNotificationException(System::String ^ message, Exception ^ innerException);
public TableNotEnabledForNotificationException (string message, Exception innerException);
new System.Web.Caching.TableNotEnabledForNotificationException : string * Exception -> System.Web.Caching.TableNotEnabledForNotificationException
Public Sub New (message As String, innerException As Exception)

Parameters

message
String

The error message that explains the reason for the exception.

innerException
Exception

The exception that is the cause of the current exception. If the innerException is not null, the current exception is raised in a catch block that handles the inner exception.

Applies to