Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- package com.example.apidemo.exception;
- import org.springframework.http.HttpStatus;
- import org.springframework.web.bind.annotation.ResponseStatus;
- @ResponseStatus(HttpStatus.NOT_FOUND)
- public class ResourceNotFoundException extends RuntimeException {
- public ResourceNotFoundException(String message) {
- super(message);
- }
- public ResourceNotFoundException(String message, Throwable cause) {
- super(message, cause);
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment