TableNotEnabledForNotificationException 构造函数
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
初始化 TableNotEnabledForNotificationException 类的新实例。
重载
TableNotEnabledForNotificationException() |
初始化 TableNotEnabledForNotificationException 类的新实例。 |
TableNotEnabledForNotificationException(String) |
使用指定的错误消息初始化 TableNotEnabledForNotificationException 类的新实例。 |
TableNotEnabledForNotificationException(String, Exception) |
使用指定的错误消息和对作为此异常原因的内部异常的引用来初始化 TableNotEnabledForNotificationException 类的新实例。 |
TableNotEnabledForNotificationException()
初始化 TableNotEnabledForNotificationException 类的新实例。
public:
TableNotEnabledForNotificationException();
public TableNotEnabledForNotificationException ();
Public Sub New ()
适用于
TableNotEnabledForNotificationException(String)
使用指定的错误消息初始化 TableNotEnabledForNotificationException 类的新实例。
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)
参数
- message
- String
描述错误的消息。
适用于
TableNotEnabledForNotificationException(String, Exception)
使用指定的错误消息和对作为此异常原因的内部异常的引用来初始化 TableNotEnabledForNotificationException 类的新实例。
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)
参数
- message
- String
解释异常原因的错误消息。
- innerException
- Exception
导致当前异常的异常。 如果 innerException
不为 null
,则在处理内部异常的 catch
块中引发当前异常。