This commit is contained in:
Timo Westkämper 2011-04-19 10:21:40 +00:00
parent 2118178623
commit 9b2da6960d

View File

@ -83,6 +83,8 @@ public final class ClassPathUtils {
return Class.forName(className);
} catch (ClassNotFoundException e) {
return null;
} catch (NoClassDefFoundError e) {
return null;
}
}