|
|
@ -32,8 +32,8 @@ public class FlywayMigrationScriptMissingException extends RuntimeException {
|
|
|
|
|
|
|
|
|
|
|
|
FlywayMigrationScriptMissingException(List<String> locations) {
|
|
|
|
FlywayMigrationScriptMissingException(List<String> locations) {
|
|
|
|
super(locations.isEmpty() ? "Migration script locations not configured"
|
|
|
|
super(locations.isEmpty() ? "Migration script locations not configured"
|
|
|
|
: "Cannot find migrations location in: " + locations
|
|
|
|
: "Cannot find migration scripts in: " + locations
|
|
|
|
+ " (please add migrations or check your Flyway configuration)");
|
|
|
|
+ " (please add migration scripts or check your Flyway configuration)");
|
|
|
|
this.locations = new ArrayList<>(locations);
|
|
|
|
this.locations = new ArrayList<>(locations);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|