Skip to content

Commit

Permalink
Add key property name to provide context.
Browse files Browse the repository at this point in the history
  • Loading branch information
Jeremy Whiting committed Oct 14, 2024
1 parent 76375df commit 45df9b3
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ public final class RunTimeConfigurationDefaultBuildItem extends MultiBuildItem {
public RunTimeConfigurationDefaultBuildItem(final String key, final String value) {
Assert.checkNotNullParam("key", key);
Assert.checkNotEmptyParam("key", key);
Assert.checkNotNullParam("value", value);
Assert.checkNotNullParam("value for key " + key, value);
this.key = key;
this.value = value;
}
Expand Down

0 comments on commit 45df9b3

Please sign in to comment.