Uses of Class
org.springframework.batch.core.JobExecutionException

Packages that use JobExecutionException
org.springframework.batch.core Core domain context for Spring Batch covering jobs, steps, configuration and execution abstractions. 
org.springframework.batch.core.configuration Interfaces for registration and location of job configurations. 
org.springframework.batch.core.job Specific implementations of job concerns. 
org.springframework.batch.core.job.flow   
org.springframework.batch.core.launch Interfaces and simple implementations of launch concerns. 
org.springframework.batch.core.partition   
org.springframework.batch.core.partition.support   
org.springframework.batch.core.repository Interfaces and generic implementations of repository concerns. 
 

Uses of JobExecutionException in org.springframework.batch.core
 

Subclasses of JobExecutionException in org.springframework.batch.core
 class JobInterruptedException
          Exception to indicate the the job has been interrupted.
 

Uses of JobExecutionException in org.springframework.batch.core.configuration
 

Subclasses of JobExecutionException in org.springframework.batch.core.configuration
 class DuplicateJobException
          Checked exception that indicates a name clash when registering Job instances.
 

Uses of JobExecutionException in org.springframework.batch.core.job
 

Methods in org.springframework.batch.core.job that throw JobExecutionException
protected abstract  void AbstractJob.doExecute(JobExecution execution)
          Extension point for subclasses allowing them to concentrate on processing logic and ignore listeners and repository calls.
 

Uses of JobExecutionException in org.springframework.batch.core.job.flow
 

Methods in org.springframework.batch.core.job.flow that throw JobExecutionException
protected  void FlowJob.doExecute(JobExecution execution)
           
 

Uses of JobExecutionException in org.springframework.batch.core.launch
 

Subclasses of JobExecutionException in org.springframework.batch.core.launch
 class JobExecutionNotFailedException
          Checked exception to indicate that user asked for a job execution to be resumed when actually it didn't fail.
 class JobExecutionNotRunningException
          Execution indicating that a JobExecution that is not currently running has been requested to stop.
 class JobInstanceAlreadyExistsException
          Checked exception to indicate that a required Job is not available.
 class JobParametersNotFoundException
          Checked exception to indicate that a required JobParametersIncrementer is not available.
 class NoSuchJobException
          Checked exception to indicate that a required Job is not available.
 class NoSuchJobExecutionException
          Checked exception to indicate that a required JobExecution is not available.
 class NoSuchJobInstanceException
          Exception that signals that the user requested an operation on a non-existent JobInstance.
 

Uses of JobExecutionException in org.springframework.batch.core.partition
 

Methods in org.springframework.batch.core.partition that throw JobExecutionException
 Set<StepExecution> StepExecutionSplitter.split(StepExecution stepExecution, int gridSize)
          Partition the provided StepExecution into a set of parallel executable instances with the same parent JobExecution.
 

Uses of JobExecutionException in org.springframework.batch.core.partition.support
 

Methods in org.springframework.batch.core.partition.support that throw JobExecutionException
 Set<StepExecution> SimpleStepExecutionSplitter.split(StepExecution stepExecution, int gridSize)
           
 

Uses of JobExecutionException in org.springframework.batch.core.repository
 

Subclasses of JobExecutionException in org.springframework.batch.core.repository
 class JobExecutionAlreadyRunningException
           
 class JobInstanceAlreadyCompleteException
          An exception indicating an illegal attempt to restart a job that was already completed successfully.
 class JobRestartException
          An exception indicating an illegal attempt to restart a job.
 



Copyright © 2009 SpringSource. All Rights Reserved.