Skip to content

Commit

Permalink
Merge pull request quarkusio#43865 from whitingjr/add-missing-propert…
Browse files Browse the repository at this point in the history
…y-name-to-Assert-error

Add key property name to provide context
  • Loading branch information
geoand authored Oct 15, 2024
2 parents 143bd48 + 45df9b3 commit 9875631
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 9875631

Please sign in to comment.