Skip to content

Commit

Permalink
Closes #773 (#835)
Browse files Browse the repository at this point in the history
Fixed exception message per recommendation.
  • Loading branch information
lhazlewood authored Sep 17, 2023
1 parent a2b6576 commit a920163
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,8 @@ public final class UnavailableImplementationException extends RuntimeException {

private static final String DEFAULT_NOT_FOUND_MESSAGE = "Unable to find an implementation for %s using " +
"java.util.ServiceLoader. Ensure you include a backing implementation .jar in the classpath, " +
"for example jjwt-impl.jar, or your own .jar for custom implementations.";
"for example jjwt-jackson.jar, jjwt-gson.jar or jjwt-orgjson.jar, or your own .jar for " +
"custom implementations.";

UnavailableImplementationException(final Class<?> klass) {
super(String.format(DEFAULT_NOT_FOUND_MESSAGE, klass));
Expand Down

0 comments on commit a920163

Please sign in to comment.