Package org.ogce.schemas.gfac.inca.faults

Examples of org.ogce.schemas.gfac.inca.faults.Job


import org.ogce.schemas.gfac.inca.faults.Job;

public class JobSubmissionFault extends GfacException{
    public JobSubmissionFault(Throwable cause,String submitHost, String contact,String rsl,CurrentProviders api) {
        super(cause,FaultCode.ErrorAtDependentService);
        Job job = Job.Factory.newInstance();
        job.setContact(contact);
        job.setRsl(rsl);
        job.setSubmitHost(submitHost);
        errorActionDocument = createFaultData(job, api.toString(), cause);
    }
View Full Code Here

TOP

Related Classes of org.ogce.schemas.gfac.inca.faults.Job

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.