Skip to content

Commit

Permalink
Fix typo in PropertyModel::setValue
Browse files Browse the repository at this point in the history
Signed-off-by: Gyúróczki Gergő <gergonoorbi@gmail.com>
  • Loading branch information
Degubi committed Oct 28, 2020
1 parent 47708cb commit 2177388
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -394,7 +394,7 @@ public void setValue(Object object, Object value) {
try {
setValueHandle.invoke(object, value);
} catch (Throwable e) {
throw new JsonbException("Error getting value on: " + object, e);
throw new JsonbException("Error setting value on: " + object, e);
}
}

Expand Down

0 comments on commit 2177388

Please sign in to comment.