NotFoundException.java

  1. package no.nav.data.common.exceptions;

  2. import org.springframework.http.HttpStatus;
  3. import org.springframework.web.bind.annotation.ResponseStatus;

  4. @ResponseStatus(HttpStatus.NOT_FOUND)
  5. public class NotFoundException extends RuntimeException {
  6.     public NotFoundException(String message) {
  7.         super(message);
  8.     }
  9. }