mirror of https://github.com/apache/lucene.git
LUCENE-2510: minor change
git-svn-id: https://svn.apache.org/repos/asf/lucene/dev/branches/lucene2510@1365145 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
baa71b943f
commit
b87e306e85
|
@ -125,7 +125,7 @@ public final class SPIClassIterator<S> implements Iterator<Class<? extends S>> {
|
|||
return Class.forName(c, false, loader).asSubclass(clazz);
|
||||
} catch (ClassNotFoundException cnfe) {
|
||||
throw new ServiceConfigurationError(String.format(Locale.ROOT, "A SPI class of type %s with classname %s does not exist, "+
|
||||
"please fix the file '%s%s' in your classpath.", clazz.getName(), c, META_INF_SERVICES, clazz.getName()));
|
||||
"please fix the file '%s%1$s' in your classpath.", clazz.getName(), c, META_INF_SERVICES));
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue