Skip to content

Commit

Permalink
[hotfix] typo IllegalArgumentException
Browse files Browse the repository at this point in the history
This closes apache#1602
  • Loading branch information
Andrea Sella authored and StephanEwen committed Feb 8, 2016
1 parent d51bec1 commit 5c47f38
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -357,10 +357,10 @@ public JDBCInputFormat finish() {
LOG.info("Password was not supplied separately.");
}
if (format.dbURL == null) {
throw new IllegalArgumentException("No dababase URL supplied.");
throw new IllegalArgumentException("No database URL supplied");
}
if (format.query == null) {
throw new IllegalArgumentException("No query suplied");
throw new IllegalArgumentException("No query supplied");
}
if (format.drivername == null) {
throw new IllegalArgumentException("No driver supplied");
Expand Down

0 comments on commit 5c47f38

Please sign in to comment.