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

org.jboss.resteasy.client.exception.ResteasyClientErrorException Maven / Gradle / Ivy

There is a newer version: 4.0.0.Beta5
Show newest version
package org.jboss.resteasy.client.exception;


import static org.jboss.resteasy.client.exception.WebApplicationExceptionWrapper.sanitize;

import javax.ws.rs.ClientErrorException;
import javax.ws.rs.core.Response;

/**
 * Wraps a {@link ClientErrorException} with a {@linkplain #sanitize(Response) sanitized} response.
 *
 * @author James R. Perkins
 */
public class ResteasyClientErrorException extends ClientErrorException implements WebApplicationExceptionWrapper {

    private final ClientErrorException wrapped;

    ResteasyClientErrorException(final ClientErrorException wrapped) {
        super(wrapped.getMessage(), sanitize(wrapped.getResponse()), wrapped.getCause());
        this.wrapped = wrapped;
    }

    @Override
    public ClientErrorException unwrap() {
        return wrapped;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy