mirror of https://github.com/jwtk/jjwt.git
parent
a2b65763e9
commit
a920163be4
|
@ -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 " +
|
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, " +
|
"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) {
|
UnavailableImplementationException(final Class<?> klass) {
|
||||||
super(String.format(DEFAULT_NOT_FOUND_MESSAGE, klass));
|
super(String.format(DEFAULT_NOT_FOUND_MESSAGE, klass));
|
||||||
|
|
Loading…
Reference in New Issue