Package org.apache.imperius.spl.parser.exceptions

Examples of org.apache.imperius.spl.parser.exceptions.NonExistentSymbolException


    if(!symTab.symbolExists(targetClassName + "." + targetClassPropertyName,recurse )) // make sure this is a valid property
    {

      logger.severe(targetClassName + "." + targetClassPropertyName + " does not exist");
     
      throw new NonExistentSymbolException(targetClassName + "." + targetClassPropertyName + " does not exist");
    }
    else
    {
      // xiping's modification to support Java overloading, 06/21/09
      Symbol propSymbol = (Symbol)symTab.getSymbol(targetClassName + "." + targetClassPropertyName);
View Full Code Here

TOP

Related Classes of org.apache.imperius.spl.parser.exceptions.NonExistentSymbolException

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.