package org.jboss.resteasy.client.exception;
import static org.jboss.resteasy.client.exception.WebApplicationExceptionWrapper.sanitize;
import javax.ws.rs.NotFoundException;
import javax.ws.rs.core.Response;
Wraps a NotFoundException
with a sanitized response. Author: James R. Perkins
/**
* Wraps a {@link NotFoundException} with a {@linkplain #sanitize(Response) sanitized} response.
*
* @author <a href="mailto:jperkins@redhat.com">James R. Perkins</a>
*/
public class ResteasyNotFoundException extends NotFoundException implements WebApplicationExceptionWrapper<NotFoundException> {
private final NotFoundException wrapped;
ResteasyNotFoundException(final NotFoundException wrapped) {
super(wrapped.getMessage(), sanitize(wrapped.getResponse()), wrapped.getCause());
this.wrapped = wrapped;
}
@Override
public NotFoundException unwrap() {
return wrapped;
}
}