Browse Source

Generalized exception that might occur

tags/V1_9_2_RC1
Andy Clement 5 years ago
parent
commit
8aeb774d21
1 changed files with 1 additions and 1 deletions
  1. 1
    1
      weaver/src/org/aspectj/weaver/ltw/LTWWorld.java

+ 1
- 1
weaver/src/org/aspectj/weaver/ltw/LTWWorld.java View File

@@ -75,7 +75,7 @@ public class LTWWorld extends BcelWorld implements IReflectionWorld {
this.weavingContext = weavingContext;
try {
classLoaderString = loader.toString();
} catch (NullPointerException npe) {
} catch (Throwable t) {
// Possibly some state in the loader isn't initialized but is used in the toString()
classLoaderString = loader.getClass().getName()+":"+Integer.toString(System.identityHashCode(loader));
}

Loading…
Cancel
Save