Compartir a través de


Clase InvalidInputException

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

Jerarquía de herencia

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

Espacio de nombres:  Microsoft.SqlServer.Management.Dac
Ensamblado:  Microsoft.SqlServer.Management.Dac (en Microsoft.SqlServer.Management.Dac.dll)

Sintaxis

'Declaración
<SerializableAttribute> _
Public NotInheritable Class InvalidInputException _
    Inherits DacException
'Uso
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

El tipo InvalidInputException expone los siguientes miembros.

Constructores

  Nombre Descripción
Método público InvalidInputException(String) Initializes a new instance of the InvalidInputException class that has the specified message text.
Método público InvalidInputException(String, Exception) Initializes a new instance of the InvalidInputException class that has the specified message text and inner exception.

Arriba

Propiedades

  Nombre Descripción
Propiedad pública DacExceptionType Gets the type of the exception. (Se hereda de DacException.)
Propiedad pública Data (Se hereda de Exception.)
Propiedad pública HelpLink Gets a string with the URL help link that further explains the exception. (Se hereda de DacException.)
Propiedad protegida HResult (Se hereda de Exception.)
Propiedad pública InnerException (Se hereda de Exception.)
Propiedad pública Message (Se hereda de Exception.)
Propiedad pública Source (Se hereda de Exception.)
Propiedad pública StackTrace (Se hereda de Exception.)
Propiedad pública TargetSite (Se hereda de Exception.)

Arriba

Métodos

  Nombre Descripción
Método público Equals (Se hereda de Object.)
Método protegido Finalize (Se hereda de Object.)
Método público GetBaseException (Se hereda de Exception.)
Método público GetHashCode (Se hereda de Object.)
Método público GetObjectData (Se hereda de Exception.)
Método público GetType (Se hereda de Exception.)
Método protegido Init Initializes provider properties. (Se hereda de DacException.)
Método protegido MemberwiseClone (Se hereda de Object.)
Método protegido SetHelpContext Sets the help context for the help link. (Se hereda de DacException.)
Método público ToString (Se hereda de Exception.)

Arriba

Comentarios

Using the InvalidInputException class, you can:

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

  • Determine the cause of the error.

Thread Safety

Todos los miembros estáticos (compartidos en Microsoft Visual Basic) públicos de este tipo son seguros para operaciones multiproceso. No se garantiza que los miembros de instancia sean seguros para subprocesos.

Ejemplos

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."); 
} 

Seguridad para subprocesos

Cualquier miembro público static (Shared en Visual Basic) de este tipo es seguro para subprocesos. No se garantiza que los miembros de instancia sean seguros para subprocesos.