source: trip-planner/src/main/java/finki/diplomska/tripplanner/models/exceptions/LocationNotFoundException.java@ 84d0fbb

Last change on this file since 84d0fbb was 6a3a178, checked in by Ema <ema_spirova@…>, 3 years ago

initial commit

  • Property mode set to 100644
File size: 379 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 LocationNotFoundException extends RuntimeException{
8 public LocationNotFoundException(Long id) {super(String.format("Location with id %d is not found", id));}
9}
Note: See TracBrowser for help on using the repository browser.