List of usage examples for org.springframework.orm.jpa JpaSystemException getMessage
@Override
@Nullable
public String getMessage()
From source file:edu.pitt.dbmi.ccd.anno.error.ErrorHandler.java
@ExceptionHandler(JpaSystemException.class) @ResponseStatus(HttpStatus.INTERNAL_SERVER_ERROR) @ResponseBody/* ww w . j ava 2 s . c o m*/ public ErrorMessage handleJpaSystemException(JpaSystemException ex, HttpServletRequest req) { LOGGER.error(ex.getMessage(), ex); return new ErrorMessage(HttpStatus.INTERNAL_SERVER_ERROR, REQUEST_FAILED, req); }