Skip to content

Commit

Permalink
refactor: changed error message.
Browse files Browse the repository at this point in the history
  • Loading branch information
Jaxelr committed Jun 18, 2020
1 parent f097a56 commit 8d84514
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/MinimigLib/Options.cs
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ public DatabaseProvider MapDatabaseProvider(string input)
return provider;
}

throw new Exception("The string provided doesnt correspond to one of the possible values (sqlserver, postgres)");
throw new Exception("The string provided as a provider doesnt correspond to one of the possible values (sqlserver, postgres)");
}

internal string GetFolder() => string.IsNullOrEmpty(MigrationsFolder) ? Directory.GetCurrentDirectory() : MigrationsFolder;
Expand Down

0 comments on commit 8d84514

Please sign in to comment.