Example usage for org.springframework.batch.core.repository JobRestartException getMessage

List of usage examples for org.springframework.batch.core.repository JobRestartException getMessage

Introduction

In this page you can find the example usage for org.springframework.batch.core.repository JobRestartException getMessage.

Prototype

public String getMessage() 

Source Link

Document

Returns the detail message string of this throwable.

Usage

From source file:org.springframework.batch.admin.web.RestControllerAdvice.java

@ResponseBody
@ExceptionHandler/*from w ww  . j av  a 2s .  c o m*/
@ResponseStatus(HttpStatus.BAD_REQUEST)
public VndErrors onJobRestartException(JobRestartException e) {
    String logref = logDebug(e);
    return new VndErrors(logref, e.getMessage());
}