ec.gob.senescyt.sniese.commons.exceptions.mappers.MensajesErrorExceptionMapper Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of sniese-commons Show documentation
Show all versions of sniese-commons Show documentation
Librería que contiene clases de uso comun para sniese hechos en dropwizard
package ec.gob.senescyt.sniese.commons.exceptions.mappers;
import ec.gob.senescyt.sniese.commons.exceptions.MensajesErrorException;
import org.eclipse.jetty.http.HttpStatus;
import javax.ws.rs.core.Response;
import javax.ws.rs.ext.ExceptionMapper;
public class MensajesErrorExceptionMapper implements ExceptionMapper {
@Override
public Response toResponse(MensajesErrorException mensajesErrorException) {
return Response.status(HttpStatus.BAD_REQUEST_400).entity(mensajesErrorException.getErrores()).build();
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy