TableNotEnabledForNotificationException Konstruktoren
Definition
Wichtig
Einige Informationen beziehen sich auf Vorabversionen, die vor dem Release ggf. grundlegend überarbeitet werden. Microsoft übernimmt hinsichtlich der hier bereitgestellten Informationen keine Gewährleistungen, seien sie ausdrücklich oder konkludent.
Initialisiert eine neue Instanz der TableNotEnabledForNotificationException-Klasse.
Überlädt
TableNotEnabledForNotificationException() |
Initialisiert eine neue Instanz der TableNotEnabledForNotificationException-Klasse. |
TableNotEnabledForNotificationException(String) |
Initialisiert eine neue Instanz der TableNotEnabledForNotificationException-Klasse mit der angegebenen Fehlermeldung. |
TableNotEnabledForNotificationException(String, Exception) |
Initialisiert eine neue Instanz der TableNotEnabledForNotificationException-Klasse mit einer angegebenen Fehlermeldung und einem Verweis auf die innere Ausnahme, die diese Ausnahme ausgelöst hat. |
TableNotEnabledForNotificationException()
Initialisiert eine neue Instanz der TableNotEnabledForNotificationException-Klasse.
public:
TableNotEnabledForNotificationException();
public TableNotEnabledForNotificationException ();
Public Sub New ()
Gilt für
TableNotEnabledForNotificationException(String)
Initialisiert eine neue Instanz der TableNotEnabledForNotificationException-Klasse mit der angegebenen Fehlermeldung.
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)
Parameter
- message
- String
Die Meldung, in der der Fehler beschrieben wird.
Gilt für
TableNotEnabledForNotificationException(String, Exception)
Initialisiert eine neue Instanz der TableNotEnabledForNotificationException-Klasse mit einer angegebenen Fehlermeldung und einem Verweis auf die innere Ausnahme, die diese Ausnahme ausgelöst hat.
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)
Parameter
- message
- String
Die Fehlermeldung, in der die Ursache der Ausnahme erklärt wird.
- innerException
- Exception
Die Ausnahme, die die Ursache der aktuellen Ausnahme ist. Wenn innerException
nicht null
ist, wird die aktuelle Ausnahme in einem catch
-Block ausgelöst, der die innere Ausnahme behandelt.