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

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

package com.quorum.tessera.api.exception;

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

@Provider
public class NotFoundExceptionMapper implements ExceptionMapper {

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

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

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy