Package com.intergral.fusiondebug.server

Examples of com.intergral.fusiondebug.server.FDLanguageException


  public IFDVariable evaluate(String expression) throws FDLanguageException {
    try {
      return new FDVariable(this,expression,FDCaster.toFDValue(this,pc.evaluate(expression)));
    }
    catch (PageException e) {
      throw new FDLanguageException(e);
    }
  }
View Full Code Here


      if(scope!=null) return copyValues(frame,list,scope);
     
      Object value=pc.undefinedScope().get(strScope,null);
      if(value!=null) {
        if(value instanceof Struct)return copyValues(frame,new ArrayList(),(Struct)value);
        throw new FDLanguageException("["+strScope+"] is not of type scope, type is ["+Caster.toTypeName(value)+"]");
      }
      throw new FDLanguageException("["+strScope+"] does not exist in the current context");
    }
    catch (PageException e) {
      throw new FDLanguageException(e);
    }
  }
View Full Code Here

TOP

Related Classes of com.intergral.fusiondebug.server.FDLanguageException

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.