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

io.dropwizard.jersey.optional.EmptyOptionalExceptionMapper Maven / Gradle / Ivy

The newest version!
package io.dropwizard.jersey.optional;

import jakarta.ws.rs.core.Response;
import jakarta.ws.rs.ext.ExceptionMapper;

/**
 * The default response when an empty optional is returned, is to respond with
 * a 404 NOT FOUND response.
 */
public class EmptyOptionalExceptionMapper implements ExceptionMapper {
    @Override
    public Response toResponse(EmptyOptionalException exception) {
        return Response.status(Response.Status.NOT_FOUND).build();
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy