Share via


MigrationsPendingException Constructors

Definition

Overloads

MigrationsPendingException()

Initializes a new instance of the MigrationsPendingException class.

MigrationsPendingException(String)

Initializes a new instance of the MigrationsPendingException class.

MigrationsPendingException(String, Exception)

Initializes a new instance of the MigrationsPendingException class.

MigrationsPendingException()

Initializes a new instance of the MigrationsPendingException class.

public MigrationsPendingException ();
Public Sub New ()

Applies to

MigrationsPendingException(String)

Initializes a new instance of the MigrationsPendingException class.

public MigrationsPendingException (string message);
new System.Data.Entity.Migrations.Infrastructure.MigrationsPendingException : string -> System.Data.Entity.Migrations.Infrastructure.MigrationsPendingException
Public Sub New (message As String)

Parameters

message
String

The message that describes the error.

Applies to

MigrationsPendingException(String, Exception)

Initializes a new instance of the MigrationsPendingException class.

public MigrationsPendingException (string message, Exception innerException);
new System.Data.Entity.Migrations.Infrastructure.MigrationsPendingException : string * Exception -> System.Data.Entity.Migrations.Infrastructure.MigrationsPendingException
Public Sub New (message As String, innerException As Exception)

Parameters

message
String

The message that describes the error.

innerException
Exception

The exception that is the cause of the current exception, or a null reference (Nothing in Visual Basic) if no inner exception is specified.

Applies to