Skip to content

Commit

Permalink
Ignores class existence
Browse files Browse the repository at this point in the history
  • Loading branch information
lukaszlenart committed Jul 31, 2023
1 parent bc14126 commit 2533d31
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -194,7 +194,7 @@ private Set<Class<?>> parseClasses(String commaDelimitedClasses) {
try {
classes.add(Class.forName(className));
} catch (ClassNotFoundException e) {
throw new ConfigurationException("Cannot load class for exclusion/exemption configuration: " + className, e);
LOG.warn("Class: {} doesn't exist, ignoring it!", className);
}
}

Expand Down

0 comments on commit 2533d31

Please sign in to comment.