EntityCommandExecutionException Constructor
Initializes a new instance of the EntityCommandExecutionException class.
Assembly: EntityFramework (in EntityFramework.dll)
Name | Description | |
---|---|---|
![]() | EntityCommandExecutionException() | Initializes a new instance of EntityCommandExecutionException, no message, no inner exception. Probably should not exist, but it makes FxCop happy. |
![]() | EntityCommandExecutionException(String) | Initializes a new instance of EntityCommandExecutionException, with message, no inner exception. Probably should not exist, but it makes FxCop happy. |
![]() | EntityCommandExecutionException(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.
EntityCommandExecutionException Constructor (String)
Initializes a new instance of EntityCommandExecutionException, with message, no inner exception. Probably should not exist, but it makes FxCop happy.
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.
Parameters
- message
-
Type:
System.String
The message that describes the error.
- innerException
-
Type:
System.Exception
The inner exception that caused this current exception.