Condividi tramite


Classe InvalidInputException

The InvalidInputException class is raised when validation of input data fails in the DAC package.

Gerarchia di ereditarietà

System. . :: . .Object
  System. . :: . .Exception
    Microsoft.SqlServer.Management.Common. . :: . .SqlServerManagementException
      Microsoft.SqlServer.Management.Dac. . :: . .DacException
        Microsoft.SqlServer.Management.Dac..::..InvalidInputException

Spazio dei nomi  Microsoft.SqlServer.Management.Dac
Assembly:  Microsoft.SqlServer.Management.Dac (in Microsoft.SqlServer.Management.Dac.dll)

Sintassi

'Dichiarazione
<SerializableAttribute> _
Public NotInheritable Class InvalidInputException _
    Inherits DacException
'Utilizzo
Dim instance As InvalidInputException
[SerializableAttribute]
public sealed class InvalidInputException : DacException
[SerializableAttribute]
public ref class InvalidInputException sealed : public DacException
[<SealedAttribute>]
[<SerializableAttribute>]
type InvalidInputException =  
    class
        inherit DacException
    end
public final class InvalidInputException extends DacException

Nel tipo InvalidInputException sono esposti i membri seguenti.

Costruttori

  Nome Descrizione
Metodo pubblico InvalidInputException(String) Initializes a new instance of the InvalidInputException class that has the specified message text.
Metodo pubblico InvalidInputException(String, Exception) Initializes a new instance of the InvalidInputException class that has the specified message text and inner exception.

In alto

Proprietà

  Nome Descrizione
Proprietà pubblica DacExceptionType Gets the type of the exception. Ereditato da DacException.
Proprietà pubblica Data Ereditato da Exception.
Proprietà pubblica HelpLink Gets a string with the URL help link that further explains the exception. Ereditato da DacException.
Proprietà protetta HResult Ereditato da Exception.
Proprietà pubblica InnerException Ereditato da Exception.
Proprietà pubblica Message Ereditato da Exception.
Proprietà pubblica Source Ereditato da Exception.
Proprietà pubblica StackTrace Ereditato da Exception.
Proprietà pubblica TargetSite Ereditato da Exception.

In alto

Metodi

  Nome Descrizione
Metodo pubblico Equals Ereditato da Object.
Metodo protetto Finalize Ereditato da Object.
Metodo pubblico GetBaseException Ereditato da Exception.
Metodo pubblico GetHashCode Ereditato da Object.
Metodo pubblico GetObjectData Ereditato da Exception.
Metodo pubblico GetType Ereditato da Exception.
Metodo protetto Init Initializes provider properties. Ereditato da DacException.
Metodo protetto MemberwiseClone Ereditato da Object.
Metodo protetto SetHelpContext Sets the help context for the help link. Ereditato da DacException.
Metodo pubblico ToString Ereditato da Exception.

In alto

Osservazioni

Using the InvalidInputException class, you can:

  • Handle errors generated by invalid input in the DAC namespace.

  • Determine the cause of the error.

Thread Safety

Tutti i membri statici pubblici (Shared in Microsoft Visual Basic) di questo tipo sono sicuri per le operazioni a thread multipli. Non è invece garantita la sicurezza dei membri dell'istanza.

Esempi

VC#

try 
{ 
    //Enter Dac code here. 
 
} 
//Catch the invalid input exception.
catch (InvalidInputException iiex) 
{ 
    System.Console.WriteLine("This is a invalid input exception"); 
   //Display the exception message. 
   System.Console.WriteLine(iiex.Message); 
} 
   //Catch other exceptions. 
catch (Exception ex) 
{ 
   System.Console.WriteLine("This is another exception."); 
} 

Protezione dei thread

I membri static (Shared in Visual Basic) pubblici di questo tipo sono affidabili. Non è invece garantita la sicurezza dei membri dell'istanza.