Skip to content

Commit

Permalink
#2105 fix the wrong catch
Browse files Browse the repository at this point in the history
  • Loading branch information
elakito committed Dec 9, 2015
1 parent 5b65d19 commit 32ab919
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion modules/cpr/src/main/java/org/atmosphere/util/IOUtils.java
Original file line number Diff line number Diff line change
Expand Up @@ -363,7 +363,7 @@ public static Class<?> loadClass(Class<?> thisClass, String className) throws Ex
} catch (Throwable t) {
try {
return Class.forName(className);
} catch (Throwable t2) {
} catch (Exception t2) {
if (thisClass != null) {
return thisClass.getClassLoader().loadClass(className);
}
Expand Down

0 comments on commit 32ab919

Please sign in to comment.