Skip to content

Commit

Permalink
adjusted confusing error message
Browse files Browse the repository at this point in the history
[ci skip]
  • Loading branch information
overheadhunter committed Aug 15, 2024
1 parent 3d3d544 commit 60bf05a
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ static FuseBuilder getSupported() throws UnsupportedOperationException {
.filter(FuseBuilder::isSupported)
.findAny()
.map(ServiceLoader.Provider::get)
.orElseThrow(() -> new UnsupportedOperationException("No implementation of FuseProvider found for the current platform."));
.orElseThrow(() -> new UnsupportedOperationException("No implementation of FuseBuilder found for the current platform."));
}

private static boolean isSupported(ServiceLoader.Provider<FuseBuilder> provider) {
Expand Down

0 comments on commit 60bf05a

Please sign in to comment.