Constructeur ODataException (String, Exception)
Crée une nouvelle instance de la classe ODataException avec un message d'erreur et une exception interne.
Espace de noms : Microsoft.Data.OData
Assembly : Microsoft.Data.OData (en Microsoft.Data.OData.dll)
Syntaxe
'Déclaration
Public Sub New ( _
message As String, _
innerException As Exception _
)
'Utilisation
Dim message As String
Dim innerException As Exception
Dim instance As New ODataException(message, _
innerException)
public ODataException(
string message,
Exception innerException
)
public:
ODataException(
String^ message,
Exception^ innerException
)
new :
message:string *
innerException:Exception -> ODataException
public function ODataException(
message : String,
innerException : Exception
)
Paramètres
- message
Type : System.String
Message d'erreur de texte brut de cette exception.
- innerException
Type : System.Exception
Exception interne à l'origine de cette exception à lever.