source: trip-planner/src/main/java/finki/diplomska/tripplanner/models/exceptions/RegionNotFoundException.java

Last change on this file was 6fe77af, checked in by Ema <ema_spirova@…>, 2 years ago

add location feature

  • Property mode set to 100644
File size: 372 bytes
Line 
1package finki.diplomska.tripplanner.models.exceptions;
2
3import org.springframework.http.HttpStatus;
4import org.springframework.web.bind.annotation.ResponseStatus;
5
6@ResponseStatus(HttpStatus.NOT_FOUND)
7public class RegionNotFoundException extends RuntimeException{
8 public RegionNotFoundException(Long id){super(String.format("Region with id %d is not found", id));}
9}
Note: See TracBrowser for help on using the repository browser.