Skip to content

Commit

Permalink
Fix exception message
Browse files Browse the repository at this point in the history
  • Loading branch information
minwoox committed Nov 4, 2024
1 parent c432ab8 commit f0fa46b
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ public CompletableFuture<Mirror> mirror(String id) {
@SuppressWarnings("unchecked")
final Entry<JsonNode> entry = (Entry<JsonNode>) entries.get(mirrorFile);
if (entry == null) {
throw new EntryNotFoundException("failed to find credential '" + mirrorFile + "' in " +
throw new EntryNotFoundException("failed to find mirror '" + mirrorFile + "' in " +
parent().name() + '/' + name());
}

Expand Down

0 comments on commit f0fa46b

Please sign in to comment.