Class VersionOrderInvalidException
Inheritance
VersionOrderInvalidException
Assembly: FluentMigrator.Runner.dll
Syntax
public class VersionOrderInvalidException : RunnerException, ISerializable, _Exception
Constructors
|
Edit this page
View Source
VersionOrderInvalidException(IEnumerable<KeyValuePair<long, IMigrationInfo>>)
Declaration
public VersionOrderInvalidException(IEnumerable<KeyValuePair<long, IMigrationInfo>> invalidMigrations)
Parameters
Properties
|
Edit this page
View Source
InvalidMigrations
Declaration
public IEnumerable<KeyValuePair<long, IMigrationInfo>> InvalidMigrations { get; set; }
Property Value
|
Edit this page
View Source
InvalidVersions
Declaration
public IEnumerable<long> InvalidVersions { get; }
Property Value
|
Edit this page
View Source
Message
Gets a message that describes the current exception.
Declaration
public override string Message { get; }
Property Value
Type |
Description |
string |
The error message that explains the reason for the exception, or an empty string ("").
|
Overrides
Implements