[Minor] Change logger in ComponentContainerImpl.java

This commit is contained in:
Robert von Burg 2018-06-20 13:42:41 +02:00
parent 6b9d168a0b
commit 81a080ebd1
1 changed files with 1 additions and 1 deletions

View File

@ -88,7 +88,7 @@ public class ComponentContainerImpl implements ComponentContainer {
T component = (T) this.componentMap.get(clazz);
if (component == null) {
String msg = "The component does not exist for class {0}"; //$NON-NLS-1$
msg = MessageFormat.format(msg, clazz);
msg = MessageFormat.format(msg, clazz.getName());
throw new IllegalArgumentException(msg);
}
return component;