Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Capture RuntimeExceptions in dinamic class loading
Since 9.x, if you deploy an war with two (or more wars) with different libraries, deployment crash since it's trying to load classes from one WAR with the classloader from the other WAR. This cross load is intended (see BeanDeploymentArchiveImpl, method isAccesible, line 246, WFLY-4250), but it's waiting for a null load, not a RuntimeException. With this fix, a warn is registered in log but application can be loaded without major problems.
- Loading branch information