Package org.aspectj.apache.bcel.verifier.exc

Examples of org.aspectj.apache.bcel.verifier.exc.LoadingException


      if (jc != null){
        /* If we find more constraints to check, we should do this in an own method. */
        if (! myOwner.getClassName().equals(jc.getClassName())){
          // This should maybe caught by BCEL: In case of renamed .class files we get wrong
          // JavaClass objects here.
          throw new LoadingException("Wrong name: the internal name of the .class file '"+jc.getClassName()+"' does not match the file's name '"+myOwner.getClassName()+"'.");
        }
      }
     
    }
    catch(LoadingException e){
View Full Code Here

TOP

Related Classes of org.aspectj.apache.bcel.verifier.exc.LoadingException

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.