Skip to content

Commit

Permalink
Merge pull request #832 from 9tigerio/thadguidry-patch-1
Browse files Browse the repository at this point in the history
Clarify messaging for column not found
  • Loading branch information
kdhrubo authored Dec 15, 2024
2 parents f7f7290 + e5bd670 commit 0615016
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
public class InvalidColumnException extends RuntimeException {

public InvalidColumnException(String tableName, String columnName) {
super("Missing column " + tableName + "." + columnName);
super("Column not found " + tableName + "." + columnName);
}

}

0 comments on commit 0615016

Please sign in to comment.