DbUpdateException Constructors  
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Overloads
| DbUpdateException() | 
						 Initializes a new instance of the DbUpdateException class.  | 
        	
| DbUpdateException(String) | 
						 Initializes a new instance of the DbUpdateException class.  | 
        	
| DbUpdateException(String, Exception) | 
						 Initializes a new instance of the DbUpdateException class.  | 
        	
DbUpdateException()
Initializes a new instance of the DbUpdateException class.
public DbUpdateException();
	Public Sub New ()
  Applies to
DbUpdateException(String)
Initializes a new instance of the DbUpdateException class.
public DbUpdateException(string message);
	new System.Data.Entity.Infrastructure.DbUpdateException : string -> System.Data.Entity.Infrastructure.DbUpdateException
	Public Sub New (message As String)
	Parameters
- message
 - String
 
The message.
Applies to
DbUpdateException(String, Exception)
Initializes a new instance of the DbUpdateException class.
public DbUpdateException(string message, Exception innerException);
	new System.Data.Entity.Infrastructure.DbUpdateException : string * Exception -> System.Data.Entity.Infrastructure.DbUpdateException
	Public Sub New (message As String, innerException As Exception)
	Parameters
- message
 - String
 
The message.
- innerException
 - Exception
 
The inner exception.