Package org.apache.airavata.client.api.exception

Examples of org.apache.airavata.client.api.exception.AiravataAPIInvocationException


          }
        });
      }
      return monitor;
    } catch (URISyntaxException e) {
      throw new AiravataAPIInvocationException(e);
    }
  }
View Full Code Here


        getExperimentMonitor(experimentID, listener).startMonitoring();
      }
      launchWorkflow(experimentID, workflowString, inputVals, builder);
      return experimentID; 
    catch (GraphException e) {
      throw new AiravataAPIInvocationException(e);
    } catch (ComponentException e) {
      throw new AiravataAPIInvocationException(e);
    } catch (Exception e) {
          throw new AiravataAPIInvocationException("Error working with Airavata Registry: " + e.getLocalizedMessage(), e);
      }
  }
View Full Code Here

    try {
      return new WorkflowContextHeaderBuilder(null,
          null,null,null,null,
          null);
    } catch (Exception e) {
      throw new AiravataAPIInvocationException(e);
    }
  }
View Full Code Here

  public List<ExperimentExecutionError> getExperimentExecutionErrors(
      String experimentId) throws AiravataAPIInvocationException {
    try {
      return getClient().getRegistryClient().getExperimentExecutionErrors(experimentId);
    } catch (Exception e) {
      throw new AiravataAPIInvocationException(e);
    }
  }
View Full Code Here

      throws AiravataAPIInvocationException {
    try {
      return getClient().getRegistryClient().getWorkflowExecutionErrors(experimentId,
          workflowInstanceId);
    } catch (Exception e) {
      throw new AiravataAPIInvocationException(e);
    }
  }
View Full Code Here

      throws AiravataAPIInvocationException {
    try {
      return getClient().getRegistryClient().getNodeExecutionErrors(experimentId,
          workflowInstanceId, nodeId);
    } catch (Exception e) {
      throw new AiravataAPIInvocationException(e);
    }
  }
View Full Code Here

      throws AiravataAPIInvocationException {
    try {
      return getClient().getRegistryClient().getApplicationJobErrors(experimentId,
          workflowInstanceId, nodeId, gfacJobId);
    } catch (Exception e) {
      throw new AiravataAPIInvocationException(e);
    }
  }
View Full Code Here

  public List<ApplicationJobExecutionError> getApplicationJobErrors(String gfacJobId)
      throws AiravataAPIInvocationException {
    try {
      return getClient().getRegistryClient().getApplicationJobErrors(gfacJobId);
    } catch (Exception e) {
      throw new AiravataAPIInvocationException(e);
    }
  }
View Full Code Here

      Source... filterBy) throws AiravataAPIInvocationException {
    try {
      return getClient().getRegistryClient().getExecutionErrors(experimentId,
          workflowInstanceId, nodeId, gfacJobId, filterBy);
    } catch (Exception e) {
      throw new AiravataAPIInvocationException(e);
    }
  }
View Full Code Here

  public int addExperimentError(ExperimentExecutionError error)
      throws AiravataAPIInvocationException {
    try {
      return getClient().getRegistryClient().addExperimentError(error);
    } catch (Exception e) {
      throw new AiravataAPIInvocationException(e);
    }
  }
View Full Code Here

TOP

Related Classes of org.apache.airavata.client.api.exception.AiravataAPIInvocationException

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.