RowNotInTableException Construtores

Definição

Inicializa uma nova instância da classe RowNotInTableException sem argumentos.Initializes a new instance of the RowNotInTableException class without arguments.

Sobrecargas

RowNotInTableException()

Inicializa uma nova instância da classe RowNotInTableException.Initializes a new instance of the RowNotInTableException class.

RowNotInTableException(String)

Inicializa uma nova instância da classe RowNotInTableException com a cadeia de caracteres especificada.Initializes a new instance of the RowNotInTableException class with the specified string.

RowNotInTableException(SerializationInfo, StreamingContext)

Inicializa uma nova instância da classe RowNotInTableException com informações de serialização.Initializes a new instance of the RowNotInTableException class with serialization information.

RowNotInTableException(String, Exception)

Inicializa uma nova instância da classe RowNotInTableException com uma mensagem de erro especificada e uma referência à exceção interna que é a causa da exceção.Initializes a new instance of the RowNotInTableException class with a specified error message and a reference to the inner exception that is the cause of this exception.

RowNotInTableException()

Inicializa uma nova instância da classe RowNotInTableException.Initializes a new instance of the RowNotInTableException class.

public:
 RowNotInTableException();
public RowNotInTableException ();
Public Sub New ()

Aplica-se a

RowNotInTableException(String)

Inicializa uma nova instância da classe RowNotInTableException com a cadeia de caracteres especificada.Initializes a new instance of the RowNotInTableException class with the specified string.

public:
 RowNotInTableException(System::String ^ s);
public RowNotInTableException (string? s);
public RowNotInTableException (string s);
new System.Data.RowNotInTableException : string -> System.Data.RowNotInTableException
Public Sub New (s As String)

Parâmetros

s
String

A cadeia de caracteres a ser exibida quando a exceção é gerada.The string to display when the exception is thrown.

Aplica-se a

RowNotInTableException(SerializationInfo, StreamingContext)

Inicializa uma nova instância da classe RowNotInTableException com informações de serialização.Initializes a new instance of the RowNotInTableException class with serialization information.

protected:
 RowNotInTableException(System::Runtime::Serialization::SerializationInfo ^ info, System::Runtime::Serialization::StreamingContext context);
protected RowNotInTableException (System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context);
new System.Data.RowNotInTableException : System.Runtime.Serialization.SerializationInfo * System.Runtime.Serialization.StreamingContext -> System.Data.RowNotInTableException
Protected Sub New (info As SerializationInfo, context As StreamingContext)

Parâmetros

info
SerializationInfo

Os dados necessários para serializar ou desserializar um objeto.The data that is required to serialize or deserialize an object.

context
StreamingContext

Descrição da origem e do destino do fluxo serializado especificado.Description of the source and destination of the specified serialized stream.

Confira também

Aplica-se a

RowNotInTableException(String, Exception)

Inicializa uma nova instância da classe RowNotInTableException com uma mensagem de erro especificada e uma referência à exceção interna que é a causa da exceção.Initializes a new instance of the RowNotInTableException class with a specified error message and a reference to the inner exception that is the cause of this exception.

public:
 RowNotInTableException(System::String ^ message, Exception ^ innerException);
public RowNotInTableException (string? message, Exception? innerException);
public RowNotInTableException (string message, Exception innerException);
new System.Data.RowNotInTableException : string * Exception -> System.Data.RowNotInTableException
Public Sub New (message As String, innerException As Exception)

Parâmetros

message
String

A mensagem de erro que explica a razão da exceção.The error message that explains the reason for the exception.

innerException
Exception

A exceção que é a causa da exceção atual ou uma referência nula (Nothing no Visual Basic) se nenhuma exceção interna é especificada.The exception that is the cause of the current exception, or a null reference (Nothing in Visual Basic) if no inner exception is specified.

Aplica-se a