* @throws DagEngineException thrown if the job info could not be obtained.
*/
@Override
public WorkflowJob getJob(String jobId, int start, int length) throws DagEngineException {
try {
return new JobCommand(jobId, start, length).call();
}
catch (CommandException ex) {
throw new DagEngineException(ex);
}
}