Freigeben über


ServerErrorException Konstruktoren

Definition

Überlädt

ServerErrorException(String)

Erstellt eine instance von ServerErrorException mit einer angegebenen Fehlermeldung und markiert sie als vorübergehend.

ServerErrorException(ErrorCode, String)

Erstellt eine instance von ServerErrorException mit einer angegebenen ErrorCodeFehlermeldung und markiert sie als vorübergehend.

ServerErrorException(String, Exception)

Erstellt eine instance von ServerErrorException mit einer angegebenen Fehlermeldung und einem Verweis auf die innere Ausnahme, die diese Ausnahme verursacht hat, und markiert sie als vorübergehend.

ServerErrorException(String)

Erstellt eine instance von ServerErrorException mit einer angegebenen Fehlermeldung und markiert sie als vorübergehend.

public ServerErrorException (string message);
new Microsoft.Azure.Devices.Common.Exceptions.ServerErrorException : string -> Microsoft.Azure.Devices.Common.Exceptions.ServerErrorException
Public Sub New (message As String)

Parameter

message
String

Die Meldung, in der der Fehler beschrieben wird.

Gilt für:

ServerErrorException(ErrorCode, String)

Erstellt eine instance von ServerErrorException mit einer angegebenen ErrorCodeFehlermeldung und markiert sie als vorübergehend.

public ServerErrorException (Microsoft.Azure.Devices.Common.Exceptions.ErrorCode code, string message);
new Microsoft.Azure.Devices.Common.Exceptions.ServerErrorException : Microsoft.Azure.Devices.Common.Exceptions.ErrorCode * string -> Microsoft.Azure.Devices.Common.Exceptions.ServerErrorException
Public Sub New (code As ErrorCode, message As String)

Parameter

code
ErrorCode

Die dem Fehler zugeordnete ErrorCode.

message
String

Die Meldung, in der der Fehler beschrieben wird.

Gilt für:

ServerErrorException(String, Exception)

Erstellt eine instance von ServerErrorException mit einer angegebenen Fehlermeldung und einem Verweis auf die innere Ausnahme, die diese Ausnahme verursacht hat, und markiert sie als vorübergehend.

public ServerErrorException (string message, Exception innerException);
new Microsoft.Azure.Devices.Common.Exceptions.ServerErrorException : string * Exception -> Microsoft.Azure.Devices.Common.Exceptions.ServerErrorException
Public Sub New (message As String, innerException As Exception)

Parameter

message
String

Die Meldung, in der der Fehler beschrieben wird.

innerException
Exception

Die Ausnahme, die die Ursache der aktuellen Ausnahme ist.

Gilt für: