Package org.springframework.data.rest.webmvc.support

Examples of org.springframework.data.rest.webmvc.support.ExceptionMessage


  public <T extends Throwable> ResponseEntity<ExceptionMessage> errorResponse(HttpHeaders headers, T throwable,
      HttpStatus status) {
    if (null != throwable && null != throwable.getMessage()) {
      LOG.error(throwable.getMessage(), throwable);
      return response(headers, new ExceptionMessage(throwable), status);
    } else {
      return response(headers, null, status);
    }
  }
View Full Code Here

TOP

Related Classes of org.springframework.data.rest.webmvc.support.ExceptionMessage

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.