Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ static MdcSerializer resolve(String mdcSerializerFullClassName) {
Class<?> clazz = Class.forName(mdcSerializerFullClassName);
return (MdcSerializer) clazz.getDeclaredConstructor().newInstance();
} catch (ClassNotFoundException | InstantiationException | IllegalAccessException | NoSuchMethodException |
InvocationTargetException e) {
InvocationTargetException | RuntimeException e) { //RuntimeException added because of bizarre build issue
throw new IllegalArgumentException("Could not create MdcSerializer " + mdcSerializerFullClassName, e);
}
}
Expand Down
Loading