All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.quorum.tessera.api.exception.EntityNotFoundExceptionMapper Maven / Gradle / Ivy

package com.quorum.tessera.api.exception;

import jakarta.persistence.EntityNotFoundException;
import jakarta.ws.rs.core.MediaType;
import jakarta.ws.rs.core.Response;
import jakarta.ws.rs.ext.ExceptionMapper;
import jakarta.ws.rs.ext.Provider;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;

@Provider
public class EntityNotFoundExceptionMapper implements ExceptionMapper {

  private static final Logger LOGGER = LoggerFactory.getLogger(EntityNotFoundExceptionMapper.class);

  @Override
  public Response toResponse(final EntityNotFoundException ex) {
    LOGGER.warn("Entity not found: {}", ex.getMessage());
    LOGGER.debug(null, ex);

    return Response.status(Response.Status.NOT_FOUND)
        .entity(ex.getMessage())
        .type(MediaType.TEXT_PLAIN)
        .build();
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy