Skip to content

Commit

Permalink
Merge pull request #1251 from dhis2/login-database-exception-message
Browse files Browse the repository at this point in the history
feat: [LOGIN-DATABASE-EXCEPTION-MESSAGE] Change database not created text
  • Loading branch information
vgarciabnz authored May 6, 2020
2 parents 2f211c2 + b34191b commit 4c69cff
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ class ParentDatabaseAdapter implements DatabaseAdapter {

private DatabaseAdapter getAdapter() {
if (adapter == null) {
throw new RuntimeException("Database not yet created. Please login first.");
throw new RuntimeException("Please login to access the database.");
} else {
return adapter;
}
Expand Down

0 comments on commit 4c69cff

Please sign in to comment.