source: trip-planner/src/main/java/finki/diplomska/tripplanner/models/exceptions/CityNotFoundException.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: 368 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 CityNotFoundException extends RuntimeException{
8 public CityNotFoundException(Long id) {super(String.format("City with id %d is not found", id));}
9
10}
Note: See TracBrowser for help on using the repository browser.