173174175176177178179
@ResponseBody @ExceptionHandler @ResponseStatus(HttpStatus.NOT_FOUND) public VndErrors onNoSuchModuleException(NoSuchModuleException e) { String logref = logDebug(e); return new VndErrors(logref, e.getMessage()); }
181182183184185186187
@ResponseBody @ExceptionHandler @ResponseStatus(HttpStatus.NOT_FOUND) public VndErrors onNoSuchJobExecutionException(NoSuchJobExecutionException e) { String logref = logDebug(e); return new VndErrors(logref, e.getMessage()); }
189190191192193194195
@ResponseBody @ExceptionHandler @ResponseStatus(HttpStatus.NOT_FOUND) public VndErrors onJobExecutionNotRunningException(JobExecutionNotRunningException e) { String logref = logDebug(e); return new VndErrors(logref, e.getMessage()); }
197198199200201202203
@ResponseBody @ExceptionHandler @ResponseStatus(HttpStatus.NOT_FOUND) public VndErrors onNoSuchStepExecutionException(NoSuchStepExecutionException e) { String logref = logDebug(e); return new VndErrors(logref, e.getMessage()); }
217218219220221222223
@ResponseBody @ExceptionHandler @ResponseStatus(HttpStatus.BAD_REQUEST) public VndErrors onJobExecutionAlreadyRunningException(JobExecutionAlreadyRunningException e) { String logref = logDebug(e); return new VndErrors(logref, e.getMessage()); }
225226227228229230231
@ResponseBody @ExceptionHandler @ResponseStatus(HttpStatus.BAD_REQUEST) public VndErrors onJobRestartException(JobRestartException e) { String logref = logDebug(e); return new VndErrors(logref, e.getMessage()); }
233234235236237238239
@ResponseBody @ExceptionHandler @ResponseStatus(HttpStatus.BAD_REQUEST) public VndErrors onJobInstanceAlreadyCompleteException(JobInstanceAlreadyCompleteException e) { String logref = logDebug(e); return new VndErrors(logref, e.getMessage()); }
241242243244245246247
@ResponseBody @ExceptionHandler @ResponseStatus(HttpStatus.NOT_FOUND) public VndErrors onNoSuchJobException(NoSuchBatchJobException e) { String logref = logDebug(e); return new VndErrors(logref, e.getMessage()); }
249250251252253254255
@ResponseBody @ExceptionHandler @ResponseStatus(HttpStatus.BAD_REQUEST) public VndErrors onBatchJobAlreadyExists(BatchJobAlreadyExistsException e) { String logref = logDebug(e); return new VndErrors(logref, e.getMessage()); }
257258259260261262263
@ResponseBody @ExceptionHandler @ResponseStatus(HttpStatus.NOT_FOUND) public VndErrors onNoSuchJobInstanceException(NoSuchBatchJobInstanceException e) { String logref = logDebug(e); return new VndErrors(logref, e.getMessage()); }