Example usage for org.springframework.data.rest.webmvc RepositoryRestExceptionHandler RepositoryRestExceptionHandler

List of usage examples for org.springframework.data.rest.webmvc RepositoryRestExceptionHandler RepositoryRestExceptionHandler

Introduction

In this page you can find the example usage for org.springframework.data.rest.webmvc RepositoryRestExceptionHandler RepositoryRestExceptionHandler.

Prototype

public RepositoryRestExceptionHandler(MessageSource messageSource) 

Source Link

Document

Creates a new RepositoryRestExceptionHandler using the given MessageSource .

Usage

From source file:org.springframework.data.rest.webmvc.config.RepositoryRestMvcConfiguration.java

@Bean
public RepositoryRestExceptionHandler repositoryRestExceptionHandler() {
    return new RepositoryRestExceptionHandler(applicationContext);
}