EntityCommandExecutionException Constructor

 

Initializes a new instance of the EntityCommandExecutionException class.

Namespace:   System.Data.Entity.Core
Assembly:  EntityFramework (in EntityFramework.dll)

NameDescription
System_CAPS_pubmethodEntityCommandExecutionException()

Initializes a new instance of EntityCommandExecutionException, no message, no inner exception. Probably should not exist, but it makes FxCop happy.

System_CAPS_pubmethodEntityCommandExecutionException(String)

Initializes a new instance of EntityCommandExecutionException, with message, no inner exception. Probably should not exist, but it makes FxCop happy.

System_CAPS_pubmethodEntityCommandExecutionException(String, Exception)

Initializes a new instance of EntityCommandExecutionException with message and an inner exception instance.


EntityCommandExecutionException Constructor ()

Initializes a new instance of EntityCommandExecutionException, no message, no inner exception. Probably should not exist, but it makes FxCop happy.

public EntityCommandExecutionException()

EntityCommandExecutionException Constructor (String)

Initializes a new instance of EntityCommandExecutionException, with message, no inner exception. Probably should not exist, but it makes FxCop happy.

public EntityCommandExecutionException(
	string message
)

Parameters

message
Type: System.String

The message that describes the error.


EntityCommandExecutionException Constructor (String, Exception)

Initializes a new instance of EntityCommandExecutionException with message and an inner exception instance.

public EntityCommandExecutionException(
	string message,
	Exception innerException
)

Parameters

message
Type: System.String

The message that describes the error.

innerException
Type: System.Exception

The inner exception that caused this current exception.