com.quorum.tessera.api.exception.DecodingExceptionMapper Maven / Gradle / Ivy
package com.quorum.tessera.api.exception;
import com.quorum.tessera.base64.DecodingException;
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 DecodingExceptionMapper implements ExceptionMapper {
private static final Logger LOGGER = LoggerFactory.getLogger(DecodingExceptionMapper.class);
@Override
public Response toResponse(final DecodingException exception) {
LOGGER.warn("Failed to decode message: {}", exception.getMessage());
LOGGER.debug(null, exception);
return Response.status(Response.Status.BAD_REQUEST)
.entity(exception.getMessage())
.type(MediaType.TEXT_PLAIN)
.build();
}
}