Skip to content

Commit

Permalink
ARIES-362: When checking for compatible namespaces, the namespace reg…
Browse files Browse the repository at this point in the history
…istry does not catch NoClassDefFoundError

git-svn-id: https://svn.apache.org/repos/asf/incubator/aries/trunk/blueprint@964701 13f79535-47bb-0310-9956-ffa450edef68
  • Loading branch information
gnodet committed Jul 16, 2010
1 parent 1f3ba4e commit 457abde
Showing 1 changed file with 2 additions and 0 deletions.
Expand Up @@ -373,6 +373,8 @@ private NamespaceHandler findCompatibleNamespaceHandler(URI ns) {
}
} catch (ClassNotFoundException e) {
// Ignore
} catch (NoClassDefFoundError e) {
// Ignore
}
}
}
Expand Down

0 comments on commit 457abde

Please sign in to comment.