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

org.opentripplanner.api.common.OTPExceptionMapper Maven / Gradle / Ivy

package org.opentripplanner.api.common;

import org.slf4j.Logger;
import org.slf4j.LoggerFactory;

import javax.ws.rs.core.Response;
import javax.ws.rs.ext.ExceptionMapper;
import javax.ws.rs.ext.Provider;

@Provider
public class OTPExceptionMapper implements ExceptionMapper {
    private static final Logger LOG = LoggerFactory.getLogger(OTPExceptionMapper.class);

    public Response toResponse(Exception ex) {
        // Show the exception in the server log
        LOG.error("Unhandled exception", ex);
        // Return the short form message to the client
        return Response.status(Response.Status.INTERNAL_SERVER_ERROR)
                .entity(ex.toString() + " " + ex.getMessage())
                .type("text/plain").build();
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy