DtsTaskException Constructeurs
Définition
Important
Certaines informations portent sur la préversion du produit qui est susceptible d’être en grande partie modifiée avant sa publication. Microsoft exclut toute garantie, expresse ou implicite, concernant les informations fournies ici.
Initialise une nouvelle instance de la classe DtsTaskException.
Surcharges
DtsTaskException(COMException) |
Initialise une nouvelle instance de la classe DtsTaskException avec l'exception COM spécifiée. |
DtsTaskException(String) |
Initialise une nouvelle instance de la classe DtsTaskException. |
DtsTaskException(COMException)
Initialise une nouvelle instance de la classe DtsTaskException avec l'exception COM spécifiée.
public:
DtsTaskException(System::Runtime::InteropServices::COMException ^ originalException);
public DtsTaskException (System.Runtime.InteropServices.COMException originalException);
new Microsoft.SqlServer.Dts.Runtime.DtsTaskException : System.Runtime.InteropServices.COMException -> Microsoft.SqlServer.Dts.Runtime.DtsTaskException
Public Sub New (originalException As COMException)
Paramètres
- originalException
- COMException
Exception COM.
Remarques
Si votre composant personnalisé a une exception COM qui provoque DtsTaskException la levée, encapsulez l’exception avec ce constructeur qui prend l’exception COM via le originalException
paramètre.
S’applique à
DtsTaskException(String)
Initialise une nouvelle instance de la classe DtsTaskException.
public:
DtsTaskException(System::String ^ message);
public DtsTaskException (string message);
new Microsoft.SqlServer.Dts.Runtime.DtsTaskException : string -> Microsoft.SqlServer.Dts.Runtime.DtsTaskException
Public Sub New (message As String)
Paramètres
- message
- String
Chaîne qui contient la condition d'erreur.
Remarques
Ce constructeur est utilisé lorsque votre tâche personnalisée lève une exception et que vous disposez d’une description de chaîne de la condition d’erreur.