TypedDataSetGeneratorException Constructors

Definition

Initializes a new instance of the TypedDataSetGeneratorException class.

Overloads

TypedDataSetGeneratorException()

Initializes a new instance of the TypedDataSetGeneratorException class.

TypedDataSetGeneratorException(ArrayList)

Initializes a new instance of the TypedDataSetGeneratorException class.

TypedDataSetGeneratorException(String)

Initializes a new instance of the TypedDataSetGeneratorException class with the specified string.

TypedDataSetGeneratorException(SerializationInfo, StreamingContext)

Initializes a new instance of the TypedDataSetGeneratorException class using the specified serialization information and streaming context.

TypedDataSetGeneratorException(String, Exception)

Initializes a new instance of the TypedDataSetGeneratorException class with the specified string and inner exception.

TypedDataSetGeneratorException()

Initializes a new instance of the TypedDataSetGeneratorException class.

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

Remarks

The TypedDataSetGeneratorException class is not intended for use as a stand-alone component, but as a class from which other classes derive standard functionality.

Applies to

TypedDataSetGeneratorException(ArrayList)

Initializes a new instance of the TypedDataSetGeneratorException class.

public:
 TypedDataSetGeneratorException(System::Collections::ArrayList ^ list);
public TypedDataSetGeneratorException (System.Collections.ArrayList list);
new System.Data.TypedDataSetGeneratorException : System.Collections.ArrayList -> System.Data.TypedDataSetGeneratorException
Public Sub New (list As ArrayList)

Parameters

list
ArrayList

ArrayList object containing a dynamic list of exceptions.

Remarks

The TypedDataSetGeneratorException class is not intended for use as a stand-alone component, but as a class from which other classes derive standard functionality.

Applies to

TypedDataSetGeneratorException(String)

Initializes a new instance of the TypedDataSetGeneratorException class with the specified string.

public:
 TypedDataSetGeneratorException(System::String ^ message);
public TypedDataSetGeneratorException (string message);
new System.Data.TypedDataSetGeneratorException : string -> System.Data.TypedDataSetGeneratorException
Public Sub New (message As String)

Parameters

message
String

The string to display when the exception is thrown.

Remarks

The TypedDataSetGeneratorException class is not intended for use as a stand-alone component, but as a class from which other classes derive standard functionality.

Applies to

TypedDataSetGeneratorException(SerializationInfo, StreamingContext)

Initializes a new instance of the TypedDataSetGeneratorException class using the specified serialization information and streaming context.

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

Parameters

context
StreamingContext

A StreamingContext structure.

Remarks

The TypedDataSetGeneratorException class is not intended for use as a stand-alone component, but as a class from which other classes derive standard functionality.

Applies to

TypedDataSetGeneratorException(String, Exception)

Initializes a new instance of the TypedDataSetGeneratorException class with the specified string and inner exception.

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

Parameters

message
String

The string to display when the exception is thrown.

innerException
Exception

A reference to an inner exception.

Remarks

The TypedDataSetGeneratorException class is not intended for use as a stand-alone component, but as a class from which other classes derive standard functionality.

Applies to