Package org.pentaho.platform.api.engine

Examples of org.pentaho.platform.api.engine.UnresolvedParameterException


      variableValue = null;

      String inputName = (String) inputNamesIterator.next();
      actionParameter = paramManager.getCurrentInput( inputName );
      if ( actionParameter == null ) {
        throw new UnresolvedParameterException( Messages.getInstance().getErrorString(
            "RuntimeContext.ERROR_0031_INPUT_NOT_FOUND", inputName ), //$NON-NLS-1$
            session.getName(), instanceId, getActionSequence().getSequenceName(), null );
      }

      variables = actionParameter.getVariables();
View Full Code Here

TOP

Related Classes of org.pentaho.platform.api.engine.UnresolvedParameterException

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.