NoSuchCarInParkingException.java 348 B

12345678910111213
  1. package eu.fcheret.parkingtoll.exceptions;
  2. import org.springframework.http.HttpStatus;
  3. import org.springframework.web.bind.annotation.ResponseStatus;
  4. @ResponseStatus(HttpStatus.NOT_FOUND)
  5. public class NoSuchCarInParkingException extends RuntimeException {
  6. public NoSuchCarInParkingException(String message){
  7. super(message);
  8. }
  9. }