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

org.kiwiproject.dropwizard.util.exception.JsonProcessingExceptionMapper Maven / Gradle / Ivy

There is a newer version: 4.0.1
Show newest version
package org.kiwiproject.dropwizard.util.exception;

import com.fasterxml.jackson.core.JsonProcessingException;
import jakarta.ws.rs.core.Response;
import jakarta.ws.rs.ext.ExceptionMapper;
import jakarta.ws.rs.ext.Provider;
import org.kiwiproject.jaxrs.exception.JaxrsException;
import org.kiwiproject.jaxrs.exception.JaxrsExceptionMapper;

/**
 * Override default Dropwizard mapper to use kiwi's {@link org.kiwiproject.jaxrs.exception.ErrorMessage ErrorMessage}.
 * The response entity is built using {@link JaxrsExceptionMapper#buildResponseEntity(JaxrsException)}.
 */
@Provider
public class JsonProcessingExceptionMapper implements ExceptionMapper {

    public static final String DEFAULT_MSG = JsonExceptionMappers.DEFAULT_MSG;

    @Override
    public Response toResponse(JsonProcessingException exception) {
        return JsonExceptionMappers.toResponse(exception);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy