Example usage for org.springframework.data.rest.webmvc ResourceNotFoundException toString

List of usage examples for org.springframework.data.rest.webmvc ResourceNotFoundException toString

Introduction

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

Prototype

public String toString() 

Source Link

Document

Returns a short description of this throwable.

Usage

From source file:org.lecture.controller.BaseController.java

@ExceptionHandler(ResourceNotFoundException.class)
@ResponseStatus(HttpStatus.NOT_FOUND)//from   www .j  a v a  2s .  c o  m
public String handleNotFound(ResourceNotFoundException ex) {
    return ex.toString();
}