Adding NOPMD statement to empty catch

git-svn-id: https://svn.apache.org/repos/asf/commons/proper/lang/trunk@1145035 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Henri Yandell 2011-07-11 06:09:39 +00:00
parent d12a0bf808
commit 501363c813
1 changed files with 2 additions and 1 deletions

View File

@ -801,7 +801,8 @@ public class ClassUtils {
return getClass(classLoader, className.substring(0, lastDotIndex) +
INNER_CLASS_SEPARATOR_CHAR + className.substring(lastDotIndex + 1),
initialize);
} catch (ClassNotFoundException ex2) {
} catch (ClassNotFoundException ex2) { // NOPMD
// ignore exception
}
}